pub struct WithdrawParams {
pub quote_lots_to_withdraw: Option<u64>,
pub base_lots_to_withdraw: Option<u64>,
}Fields§
§quote_lots_to_withdraw: Option<u64>§base_lots_to_withdraw: Option<u64>Trait Implementations§
Source§impl BorshDeserialize for WithdrawParams
impl BorshDeserialize for WithdrawParams
Source§impl BorshSerialize for WithdrawParams
impl BorshSerialize for WithdrawParams
Source§impl Clone for WithdrawParams
impl Clone for WithdrawParams
Source§fn clone(&self) -> WithdrawParams
fn clone(&self) -> WithdrawParams
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 Debug for WithdrawParams
impl Debug for WithdrawParams
Source§impl Default for WithdrawParams
impl Default for WithdrawParams
Source§fn default() -> WithdrawParams
fn default() -> WithdrawParams
Returns the “default value” for a type. Read more
Source§impl PartialEq for WithdrawParams
impl PartialEq for WithdrawParams
impl Copy for WithdrawParams
impl Eq for WithdrawParams
impl StructuralPartialEq for WithdrawParams
Auto Trait Implementations§
impl Freeze for WithdrawParams
impl RefUnwindSafe for WithdrawParams
impl Send for WithdrawParams
impl Sync for WithdrawParams
impl Unpin for WithdrawParams
impl UnwindSafe for WithdrawParams
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