PoolIdentifier

Enum PoolIdentifier 

Source
pub enum PoolIdentifier {
    Address(Ustr),
    PoolId(Ustr),
}
Expand description

Protocol-aware pool identifier for DeFi liquidity pools.

This enum distinguishes between two types of pool identifiers:

  • Address: Used by V2/V3 protocols where pool identifier equals pool contract address (42 chars: “0x” + 40 hex)
  • PoolId: Used by V4 protocols where pool identifier is a bytes32 hash (66 chars: “0x” + 64 hex)

The type implements case-insensitive equality and hashing for address comparison, while preserving the original case for display purposes.

Variants§

§

Address(Ustr)

V2/V3 pool identifier (checksummed Ethereum address)

§

PoolId(Ustr)

V4 pool identifier (32-byte pool ID as hex string)

Implementations§

Source§

impl PoolIdentifier

Source

pub fn new_checked<T: AsRef<str>>(value: T) -> Result<Self>

Creates a new PoolIdentifier instance with correctness checking.

Automatically detects variant based on string length:

  • 42 characters (0x + 40 hex): Address variant
  • 66 characters (0x + 64 hex): PoolId variant
§Errors

Returns an error if:

  • String doesn’t start with “0x”
  • Length is neither 42 nor 66 characters
  • Contains invalid hex characters
  • Address checksum validation fails (for Address variant)
Source

pub fn new<T: AsRef<str>>(value: T) -> Self

Creates a new PoolIdentifier instance.

§Panics

Panics if validation fails.

Source

pub fn from_address(address: Address) -> Self

Creates an Address variant from an alloy Address.

Returns the checksummed representation.

Source

pub fn from_pool_id_bytes(bytes: &[u8]) -> Result<Self>

Creates a PoolId variant from raw bytes (32 bytes).

§Errors

Returns an error if bytes length is not 32.

Source

pub fn from_pool_id_hex<T: AsRef<str>>(hex: T) -> Result<Self>

Creates a PoolId variant from a hex string (with or without 0x prefix).

§Errors

Returns an error if the string is not valid 64-character hex.

Source

pub fn inner(&self) -> Ustr

Returns the inner identifier value as a Ustr.

Source

pub fn as_str(&self) -> &str

Returns the inner identifier value as a string slice.

Source

pub fn is_address(&self) -> bool

Returns true if this is an Address variant (V2/V3 pools).

Source

pub fn is_pool_id(&self) -> bool

Returns true if this is a PoolId variant (V4 pools).

Source

pub fn to_address(&self) -> Result<Address>

Converts to native Address type (V2/V3 pools only).

Returns the underlying Address for use with alloy/ethers operations.

§Errors

Returns error if this is a PoolId variant or if parsing fails.

Source

pub fn to_pool_id_bytes(&self) -> Result<[u8; 32]>

Converts to native bytes array (V4 pools only).

Returns the 32-byte pool ID for use in V4-specific operations.

§Errors

Returns error if this is an Address variant or if hex decoding fails.

Trait Implementations§

Source§

impl AsRef<str> for PoolIdentifier

Source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for PoolIdentifier

Source§

fn clone(&self) -> PoolIdentifier

Returns a duplicate of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PoolIdentifier

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for PoolIdentifier

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for PoolIdentifier

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<&str> for PoolIdentifier

Source§

fn from(value: &str) -> Self

Converts to this type from the input type.
Source§

impl From<String> for PoolIdentifier

Source§

fn from(value: String) -> Self

Converts to this type from the input type.
Source§

impl FromStr for PoolIdentifier

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for PoolIdentifier

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for PoolIdentifier

Source§

fn cmp(&self, other: &PoolIdentifier) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for PoolIdentifier

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for PoolIdentifier

Source§

fn partial_cmp(&self, other: &PoolIdentifier) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for PoolIdentifier

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Copy for PoolIdentifier

Source§

impl Eq for PoolIdentifier

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> Separable for T
where T: Display,

Source§

fn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String

Adds separators according to the given SeparatorPolicy. Read more
Source§

fn separate_with_commas(&self) -> String

Inserts a comma every three digits from the right. Read more
Source§

fn separate_with_spaces(&self) -> String

Inserts a space every three digits from the right. Read more
Source§

fn separate_with_dots(&self) -> String

Inserts a period every three digits from the right. Read more
Source§

fn separate_with_underscores(&self) -> String

Inserts an underscore every three digits from the right. Read more
§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T> ToString for T
where T: Display + ?Sized,

§

fn to_string(&self) -> String

Converts the given value to a String. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> Ungil for T
where T: Send,