pub struct ConnectedAccountTotalBalance {
pub amount: String,
pub denominated_asset_id: String,
pub has_full_asset_coverage: bool,
}Fields§
§amount: StringThe denominated currency value of the account.
denominated_asset_id: StringThe asset ID of the total balance.
has_full_asset_coverage: boolIndicates whether the total amount represents the complete balance of all assets in the account. When true, all asset balances have been successfully converted to the denominated currency. When false, some assets could not be included in the total due to missing exchange rates or non-convertible assets.
Implementations§
Trait Implementations§
Source§impl Clone for ConnectedAccountTotalBalance
impl Clone for ConnectedAccountTotalBalance
Source§fn clone(&self) -> ConnectedAccountTotalBalance
fn clone(&self) -> ConnectedAccountTotalBalance
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 ConnectedAccountTotalBalance
impl Debug for ConnectedAccountTotalBalance
Source§impl Default for ConnectedAccountTotalBalance
impl Default for ConnectedAccountTotalBalance
Source§fn default() -> ConnectedAccountTotalBalance
fn default() -> ConnectedAccountTotalBalance
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConnectedAccountTotalBalance
impl<'de> Deserialize<'de> for ConnectedAccountTotalBalance
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 PartialEq for ConnectedAccountTotalBalance
impl PartialEq for ConnectedAccountTotalBalance
Source§fn eq(&self, other: &ConnectedAccountTotalBalance) -> bool
fn eq(&self, other: &ConnectedAccountTotalBalance) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConnectedAccountTotalBalance
Auto Trait Implementations§
impl Freeze for ConnectedAccountTotalBalance
impl RefUnwindSafe for ConnectedAccountTotalBalance
impl Send for ConnectedAccountTotalBalance
impl Sync for ConnectedAccountTotalBalance
impl Unpin for ConnectedAccountTotalBalance
impl UnwindSafe for ConnectedAccountTotalBalance
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