pub struct AccountBalancesItem {
pub asset: String,
pub free: String,
pub locked: String,
}
Expand description
AccountBalancesItem
JSON schema
{
"type": "object",
"required": [
"asset",
"free",
"locked"
],
"properties": {
"asset": {
"examples": [
"BTC"
],
"type": "string"
},
"free": {
"examples": [
"4723846.89208129"
],
"type": "string"
},
"locked": {
"examples": [
"0.00000000"
],
"type": "string"
}
}
}
Fields§
§asset: String
§free: String
§locked: String
Trait Implementations§
Source§impl Clone for AccountBalancesItem
impl Clone for AccountBalancesItem
Source§fn clone(&self) -> AccountBalancesItem
fn clone(&self) -> AccountBalancesItem
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 AccountBalancesItem
impl Debug for AccountBalancesItem
Source§impl<'de> Deserialize<'de> for AccountBalancesItem
impl<'de> Deserialize<'de> for AccountBalancesItem
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<&AccountBalancesItem> for AccountBalancesItem
impl From<&AccountBalancesItem> for AccountBalancesItem
Source§fn from(value: &AccountBalancesItem) -> Self
fn from(value: &AccountBalancesItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AccountBalancesItem
impl RefUnwindSafe for AccountBalancesItem
impl Send for AccountBalancesItem
impl Sync for AccountBalancesItem
impl Unpin for AccountBalancesItem
impl UnwindSafe for AccountBalancesItem
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