pub struct WalletWithdrawableAmount {
pub coin: String,
pub withdrawable_amount: String,
pub available_balance: String,
}Expand description
Wallet withdrawable amount details
Fields§
§coin: StringCoin name
withdrawable_amount: StringAmount that can be withdrawn
available_balance: StringAvailable balance
Trait Implementations§
Source§impl Clone for WalletWithdrawableAmount
impl Clone for WalletWithdrawableAmount
Source§fn clone(&self) -> WalletWithdrawableAmount
fn clone(&self) -> WalletWithdrawableAmount
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 WalletWithdrawableAmount
impl Debug for WalletWithdrawableAmount
Source§impl<'de> Deserialize<'de> for WalletWithdrawableAmount
impl<'de> Deserialize<'de> for WalletWithdrawableAmount
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 WalletWithdrawableAmount
impl RefUnwindSafe for WalletWithdrawableAmount
impl Send for WalletWithdrawableAmount
impl Sync for WalletWithdrawableAmount
impl Unpin for WalletWithdrawableAmount
impl UnsafeUnpin for WalletWithdrawableAmount
impl UnwindSafe for WalletWithdrawableAmount
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