pub struct AssetWalletBalanceResponseItem {
pub activate: bool,
pub balance: String,
pub wallet_name: String,
}
Expand description
AssetWalletBalanceResponseItem
JSON schema
{
"type": "object",
"required": [
"activate",
"balance",
"walletName"
],
"properties": {
"activate": {
"examples": [
true
],
"type": "boolean"
},
"balance": {
"examples": [
"0"
],
"type": "string"
},
"walletName": {
"examples": [
"Spot"
],
"type": "string"
}
}
}
Fields§
§activate: bool
§balance: String
§wallet_name: String
Trait Implementations§
Source§impl Clone for AssetWalletBalanceResponseItem
impl Clone for AssetWalletBalanceResponseItem
Source§fn clone(&self) -> AssetWalletBalanceResponseItem
fn clone(&self) -> AssetWalletBalanceResponseItem
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<'de> Deserialize<'de> for AssetWalletBalanceResponseItem
impl<'de> Deserialize<'de> for AssetWalletBalanceResponseItem
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
Source§impl From<&AssetWalletBalanceResponseItem> for AssetWalletBalanceResponseItem
impl From<&AssetWalletBalanceResponseItem> for AssetWalletBalanceResponseItem
Source§fn from(value: &AssetWalletBalanceResponseItem) -> Self
fn from(value: &AssetWalletBalanceResponseItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetWalletBalanceResponseItem
impl RefUnwindSafe for AssetWalletBalanceResponseItem
impl Send for AssetWalletBalanceResponseItem
impl Sync for AssetWalletBalanceResponseItem
impl Unpin for AssetWalletBalanceResponseItem
impl UnwindSafe for AssetWalletBalanceResponseItem
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