#[non_exhaustive]pub struct AssetValuationDetails {
pub funding: NumberString,
pub trading: NumberString,
pub earn: NumberString,
pub classic: NumberString,
}Expand description
Asset valuation details by account area.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.funding: NumberStringFunding-account valuation.
trading: NumberStringTrading-account valuation.
earn: NumberStringEarn-account valuation.
classic: NumberStringClassic-account valuation.
Trait Implementations§
Source§impl Clone for AssetValuationDetails
impl Clone for AssetValuationDetails
Source§fn clone(&self) -> AssetValuationDetails
fn clone(&self) -> AssetValuationDetails
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AssetValuationDetails
impl Debug for AssetValuationDetails
Source§impl Default for AssetValuationDetails
impl Default for AssetValuationDetails
Source§fn default() -> AssetValuationDetails
fn default() -> AssetValuationDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssetValuationDetails
impl<'de> Deserialize<'de> for AssetValuationDetails
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 AssetValuationDetails
impl RefUnwindSafe for AssetValuationDetails
impl Send for AssetValuationDetails
impl Sync for AssetValuationDetails
impl Unpin for AssetValuationDetails
impl UnsafeUnpin for AssetValuationDetails
impl UnwindSafe for AssetValuationDetails
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