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>
impl<T> BorshDeserialize for WithdrawReport<T>
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>
Source§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.
Source§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>
impl<T> BorshSerialize for WithdrawReport<T>
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 duplicate 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>
Available on crate feature gmsol-utils only.
impl<T: InitSpace> InitSpace for WithdrawReport<T>
Available on crate feature
gmsol-utils only.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