pub struct WithdrawReport<T> { /* private fields */ }
Expand description
Report of the execution of withdrawal.
Implementations§
Source§impl<T> WithdrawReport<T>
impl<T> WithdrawReport<T>
Sourcepub fn params(&self) -> &WithdrawParams<T>
pub fn params(&self) -> &WithdrawParams<T>
Get withdraw params.
Sourcepub fn long_token_fees(&self) -> &Fees<T>
pub fn long_token_fees(&self) -> &Fees<T>
Get long token fees.
Sourcepub fn short_token_fees(&self) -> &Fees<T>
pub fn short_token_fees(&self) -> &Fees<T>
Get short token fees.
Sourcepub fn long_token_output(&self) -> &T
pub fn long_token_output(&self) -> &T
Get the output amount of long tokens.
Sourcepub fn short_token_output(&self) -> &T
pub fn short_token_output(&self) -> &T
Get the output amount of short tokens.
Trait Implementations§
Source§impl<T> BorshDeserialize for WithdrawReport<T>where
WithdrawParams<T>: BorshDeserialize,
Fees<T>: BorshDeserialize,
T: BorshDeserialize,
impl<T> BorshDeserialize for WithdrawReport<T>where
WithdrawParams<T>: BorshDeserialize,
Fees<T>: BorshDeserialize,
T: BorshDeserialize,
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 WithdrawReport<T>where
WithdrawParams<T>: BorshSerialize,
Fees<T>: BorshSerialize,
T: BorshSerialize,
impl<T> BorshSerialize for WithdrawReport<T>where
WithdrawParams<T>: BorshSerialize,
Fees<T>: BorshSerialize,
T: BorshSerialize,
Source§impl<T: Clone> Clone for WithdrawReport<T>
impl<T: Clone> Clone for WithdrawReport<T>
Source§fn clone(&self) -> WithdrawReport<T>
fn clone(&self) -> WithdrawReport<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 WithdrawReport<T>
impl<T: Debug> Debug for WithdrawReport<T>
Source§impl<T: InitSpace> InitSpace for WithdrawReport<T>
impl<T: InitSpace> InitSpace for WithdrawReport<T>
Source§const INIT_SPACE: usize
const INIT_SPACE: usize
Init Space.
impl<T: Copy> Copy for WithdrawReport<T>
Auto Trait Implementations§
impl<T> Freeze for WithdrawReport<T>where
T: Freeze,
impl<T> RefUnwindSafe for WithdrawReport<T>where
T: RefUnwindSafe,
impl<T> Send for WithdrawReport<T>where
T: Send,
impl<T> Sync for WithdrawReport<T>where
T: Sync,
impl<T> Unpin for WithdrawReport<T>where
T: Unpin,
impl<T> UnwindSafe for WithdrawReport<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