pub struct SwapParams<T> { /* private fields */ }
Expand description
Swap params.
Implementations§
Source§impl<T> SwapParams<T>
impl<T> SwapParams<T>
Sourcepub fn long_token_price(&self) -> &Price<T>
pub fn long_token_price(&self) -> &Price<T>
Get long token price.
Sourcepub fn short_token_price(&self) -> &Price<T>
pub fn short_token_price(&self) -> &Price<T>
Get short token price.
Sourcepub fn is_token_in_long(&self) -> bool
pub fn is_token_in_long(&self) -> bool
Whether the in token is long token.
Sourcepub fn token_in_amount(&self) -> &T
pub fn token_in_amount(&self) -> &T
Get the amount of in token.
Trait Implementations§
Source§impl<T> BorshDeserialize for SwapParams<T>
impl<T> BorshDeserialize for SwapParams<T>
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>
§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
Source§impl<T> BorshSerialize for SwapParams<T>
impl<T> BorshSerialize for SwapParams<T>
Source§impl<T: Clone> Clone for SwapParams<T>
impl<T: Clone> Clone for SwapParams<T>
Source§fn clone(&self) -> SwapParams<T>
fn clone(&self) -> SwapParams<T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T: Debug> Debug for SwapParams<T>
impl<T: Debug> Debug for SwapParams<T>
Source§impl<T: InitSpace> InitSpace for SwapParams<T>
impl<T: InitSpace> InitSpace for SwapParams<T>
Source§const INIT_SPACE: usize
const INIT_SPACE: usize
Init Space.
impl<T: Copy> Copy for SwapParams<T>
Auto Trait Implementations§
impl<T> Freeze for SwapParams<T>where
T: Freeze,
impl<T> RefUnwindSafe for SwapParams<T>where
T: RefUnwindSafe,
impl<T> Send for SwapParams<T>where
T: Send,
impl<T> Sync for SwapParams<T>where
T: Sync,
impl<T> Unpin for SwapParams<T>where
T: Unpin,
impl<T> UnwindSafe for SwapParams<T>where
T: UnwindSafe,
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<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