pub struct ManagedSubaccountAssetResponseItem {
pub available_balance: String,
pub btc_value: String,
pub coin: String,
pub in_order: String,
pub name: String,
pub total_balance: String,
}
Expand description
ManagedSubaccountAssetResponseItem
JSON schema
{
"type": "object",
"required": [
"availableBalance",
"btcValue",
"coin",
"inOrder",
"name",
"totalBalance"
],
"properties": {
"availableBalance": {
"examples": [
"0"
],
"type": "string"
},
"btcValue": {
"examples": [
"0"
],
"type": "string"
},
"coin": {
"examples": [
"INJ"
],
"type": "string"
},
"inOrder": {
"examples": [
"0"
],
"type": "string"
},
"name": {
"examples": [
"Injective Protocol"
],
"type": "string"
},
"totalBalance": {
"examples": [
"0"
],
"type": "string"
}
}
}
Fields§
§available_balance: String
§btc_value: String
§coin: String
§in_order: String
§name: String
§total_balance: String
Trait Implementations§
Source§impl Clone for ManagedSubaccountAssetResponseItem
impl Clone for ManagedSubaccountAssetResponseItem
Source§fn clone(&self) -> ManagedSubaccountAssetResponseItem
fn clone(&self) -> ManagedSubaccountAssetResponseItem
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 ManagedSubaccountAssetResponseItem
impl<'de> Deserialize<'de> for ManagedSubaccountAssetResponseItem
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<&ManagedSubaccountAssetResponseItem> for ManagedSubaccountAssetResponseItem
impl From<&ManagedSubaccountAssetResponseItem> for ManagedSubaccountAssetResponseItem
Source§fn from(value: &ManagedSubaccountAssetResponseItem) -> Self
fn from(value: &ManagedSubaccountAssetResponseItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ManagedSubaccountAssetResponseItem
impl RefUnwindSafe for ManagedSubaccountAssetResponseItem
impl Send for ManagedSubaccountAssetResponseItem
impl Sync for ManagedSubaccountAssetResponseItem
impl Unpin for ManagedSubaccountAssetResponseItem
impl UnwindSafe for ManagedSubaccountAssetResponseItem
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