pub struct PoolViewData {
pub token0: Address,
pub token1: Address,
pub fee: u32,
pub is_dynamic_fee: bool,
pub tick_spacing: i32,
pub liquidity: u128,
pub sqrt_price_x96: Uint<256, 4>,
pub tick: i32,
}Expand description
Normalized pool snapshot — the exact field set the CLI’s output::PoolView
renders. Families that have no fee-tier field (ramses) or recompute fee in
the renderer (velodrome) set fee: 0; the CLI render path is unaffected.
Fields§
§token0: Address§token1: Address§fee: u32§is_dynamic_fee: bool§tick_spacing: i32§liquidity: u128§sqrt_price_x96: Uint<256, 4>§tick: i32Trait Implementations§
Source§impl Clone for PoolViewData
impl Clone for PoolViewData
Source§fn clone(&self) -> PoolViewData
fn clone(&self) -> PoolViewData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PoolViewData
impl Debug for PoolViewData
impl Eq for PoolViewData
Source§impl PartialEq for PoolViewData
impl PartialEq for PoolViewData
Source§fn eq(&self, other: &PoolViewData) -> bool
fn eq(&self, other: &PoolViewData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PoolViewData
Auto Trait Implementations§
impl Freeze for PoolViewData
impl RefUnwindSafe for PoolViewData
impl Send for PoolViewData
impl Sync for PoolViewData
impl Unpin for PoolViewData
impl UnsafeUnpin for PoolViewData
impl UnwindSafe for PoolViewData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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