pub struct NetWorthSummaryValue {
pub value: String,
}Expand description
NetWorthSummaryValue
JSON schema
{
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"description": "ENTITY.NET_WORTH_SUMMARY_VALUE.VALUE",
"examples": [
"1764819473.530063"
],
"type": "string"
}
}
}Fields§
§value: StringENTITY.NET_WORTH_SUMMARY_VALUE.VALUE
Implementations§
Source§impl NetWorthSummaryValue
impl NetWorthSummaryValue
pub fn builder() -> NetWorthSummaryValue
Trait Implementations§
Source§impl Clone for NetWorthSummaryValue
impl Clone for NetWorthSummaryValue
Source§fn clone(&self) -> NetWorthSummaryValue
fn clone(&self) -> NetWorthSummaryValue
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 NetWorthSummaryValue
impl Debug for NetWorthSummaryValue
Source§impl<'de> Deserialize<'de> for NetWorthSummaryValue
impl<'de> Deserialize<'de> for NetWorthSummaryValue
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<&NetWorthSummaryValue> for NetWorthSummaryValue
impl From<&NetWorthSummaryValue> for NetWorthSummaryValue
Source§fn from(value: &NetWorthSummaryValue) -> Self
fn from(value: &NetWorthSummaryValue) -> Self
Converts to this type from the input type.
Source§impl From<NetWorthSummaryValue> for NetWorthSummaryValue
impl From<NetWorthSummaryValue> for NetWorthSummaryValue
Source§fn from(value: NetWorthSummaryValue) -> Self
fn from(value: NetWorthSummaryValue) -> Self
Converts to this type from the input type.
Source§impl Serialize for NetWorthSummaryValue
impl Serialize for NetWorthSummaryValue
Source§impl TryFrom<NetWorthSummaryValue> for NetWorthSummaryValue
impl TryFrom<NetWorthSummaryValue> for NetWorthSummaryValue
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: NetWorthSummaryValue) -> Result<Self, ConversionError>
fn try_from(value: NetWorthSummaryValue) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for NetWorthSummaryValue
impl RefUnwindSafe for NetWorthSummaryValue
impl Send for NetWorthSummaryValue
impl Sync for NetWorthSummaryValue
impl Unpin for NetWorthSummaryValue
impl UnsafeUnpin for NetWorthSummaryValue
impl UnwindSafe for NetWorthSummaryValue
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