pub struct WithdrawableAmountItem {
pub coin: String,
pub withdrawable_amount: String,
pub available_balance: String,
}Expand description
Withdrawable amount item.
Fields§
§coin: StringCoin
withdrawable_amount: StringWithdrawable amount
available_balance: StringAvailable balance
Trait Implementations§
Source§impl Clone for WithdrawableAmountItem
impl Clone for WithdrawableAmountItem
Source§fn clone(&self) -> WithdrawableAmountItem
fn clone(&self) -> WithdrawableAmountItem
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 WithdrawableAmountItem
impl Debug for WithdrawableAmountItem
Source§impl Default for WithdrawableAmountItem
impl Default for WithdrawableAmountItem
Source§fn default() -> WithdrawableAmountItem
fn default() -> WithdrawableAmountItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WithdrawableAmountItem
impl<'de> Deserialize<'de> for WithdrawableAmountItem
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 WithdrawableAmountItem
impl RefUnwindSafe for WithdrawableAmountItem
impl Send for WithdrawableAmountItem
impl Sync for WithdrawableAmountItem
impl Unpin for WithdrawableAmountItem
impl UnsafeUnpin for WithdrawableAmountItem
impl UnwindSafe for WithdrawableAmountItem
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