pub struct AccountMaxWithdrawal {
pub auto_borrow: Option<bool>,
pub auto_lend_redeem: Option<bool>,
pub max_withdrawal_quantity: Decimal,
pub symbol: String,
}Fields§
§auto_borrow: Option<bool>§auto_lend_redeem: Option<bool>§max_withdrawal_quantity: Decimal§symbol: StringTrait Implementations§
Source§impl Clone for AccountMaxWithdrawal
impl Clone for AccountMaxWithdrawal
Source§fn clone(&self) -> AccountMaxWithdrawal
fn clone(&self) -> AccountMaxWithdrawal
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 AccountMaxWithdrawal
impl Debug for AccountMaxWithdrawal
Source§impl<'de> Deserialize<'de> for AccountMaxWithdrawal
impl<'de> Deserialize<'de> for AccountMaxWithdrawal
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AccountMaxWithdrawal
impl RefUnwindSafe for AccountMaxWithdrawal
impl Send for AccountMaxWithdrawal
impl Sync for AccountMaxWithdrawal
impl Unpin for AccountMaxWithdrawal
impl UnwindSafe for AccountMaxWithdrawal
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