pub struct PositionState {
pub token_id: Uint<256, 4>,
pub owner: Address,
pub token0: Address,
pub token1: Address,
pub tick_spacing: i32,
pub tick_lower: i32,
pub tick_upper: i32,
pub liquidity: u128,
pub fees_owed_0: Uint<256, 4>,
pub fees_owed_1: Uint<256, 4>,
}Expand description
Hydrated state of a Ramses-family NFPM position.
Uses tick_spacing: i32 instead of fee: u32 because Ramses-fork
positions() returns int24 tickSpacing at that field position.
Compatible with both Shadow (10-field positions() return, no nonce/operator)
and Slipstream / Aerodrome (12-field return, has nonce/operator — those are
dropped since they’re not needed by plan/quote functions).
Fields§
§token_id: Uint<256, 4>§owner: Address§token0: Address§token1: Address§tick_spacing: i32§tick_lower: i32§tick_upper: i32§liquidity: u128§fees_owed_0: Uint<256, 4>§fees_owed_1: Uint<256, 4>Trait Implementations§
Source§impl Clone for PositionState
impl Clone for PositionState
Source§fn clone(&self) -> PositionState
fn clone(&self) -> PositionState
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 PositionState
impl Debug for PositionState
Source§impl PartialEq for PositionState
impl PartialEq for PositionState
Source§fn eq(&self, other: &PositionState) -> bool
fn eq(&self, other: &PositionState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PositionState
impl StructuralPartialEq for PositionState
Auto Trait Implementations§
impl Freeze for PositionState
impl RefUnwindSafe for PositionState
impl Send for PositionState
impl Sync for PositionState
impl Unpin for PositionState
impl UnsafeUnpin for PositionState
impl UnwindSafe for PositionState
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