pub struct WalletNetWorthSummaryDto {
pub current_timestamp: String,
pub wallets: HashMap<String, WalletNetWorthSummaryValueDto>,
}Expand description
WalletNetWorthSummaryDto
JSON schema
{
"type": "object",
"required": [
"currentTimestamp",
"wallets"
],
"properties": {
"currentTimestamp": {
"description": "DTO.WALLET.NET_WORTH_SUMMARY.CURRENT_TIMESTAMP",
"examples": [
"2025-10-30T03:33:40.980Z"
],
"type": "string"
},
"wallets": {
"description": "DTO.WALLET.NET_WORTH_SUMMARY.WALLETS",
"examples": [
{
"5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1": {
"value": "1764819473.530063"
},
"WLHv2UAZm6z4KyaaELi5pjdbJh6RESMva1Rnn8pJVVh": {
"value": "3508619230.707581"
}
}
],
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/WalletNetWorthSummaryValueDTO"
}
}
}
}Fields§
§current_timestamp: StringDTO.WALLET.NET_WORTH_SUMMARY.CURRENT_TIMESTAMP
wallets: HashMap<String, WalletNetWorthSummaryValueDto>DTO.WALLET.NET_WORTH_SUMMARY.WALLETS
Implementations§
Source§impl WalletNetWorthSummaryDto
impl WalletNetWorthSummaryDto
pub fn builder() -> WalletNetWorthSummaryDto
Trait Implementations§
Source§impl Clone for WalletNetWorthSummaryDto
impl Clone for WalletNetWorthSummaryDto
Source§fn clone(&self) -> WalletNetWorthSummaryDto
fn clone(&self) -> WalletNetWorthSummaryDto
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 WalletNetWorthSummaryDto
impl Debug for WalletNetWorthSummaryDto
Source§impl<'de> Deserialize<'de> for WalletNetWorthSummaryDto
impl<'de> Deserialize<'de> for WalletNetWorthSummaryDto
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<&WalletNetWorthSummaryDto> for WalletNetWorthSummaryDto
impl From<&WalletNetWorthSummaryDto> for WalletNetWorthSummaryDto
Source§fn from(value: &WalletNetWorthSummaryDto) -> Self
fn from(value: &WalletNetWorthSummaryDto) -> Self
Converts to this type from the input type.
Source§impl From<WalletNetWorthSummaryDto> for WalletNetWorthSummaryDto
impl From<WalletNetWorthSummaryDto> for WalletNetWorthSummaryDto
Source§fn from(value: WalletNetWorthSummaryDto) -> Self
fn from(value: WalletNetWorthSummaryDto) -> Self
Converts to this type from the input type.
Source§impl Serialize for WalletNetWorthSummaryDto
impl Serialize for WalletNetWorthSummaryDto
Source§impl TryFrom<WalletNetWorthSummaryDto> for WalletNetWorthSummaryDto
impl TryFrom<WalletNetWorthSummaryDto> for WalletNetWorthSummaryDto
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: WalletNetWorthSummaryDto) -> Result<Self, ConversionError>
fn try_from(value: WalletNetWorthSummaryDto) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for WalletNetWorthSummaryDto
impl RefUnwindSafe for WalletNetWorthSummaryDto
impl Send for WalletNetWorthSummaryDto
impl Sync for WalletNetWorthSummaryDto
impl Unpin for WalletNetWorthSummaryDto
impl UnwindSafe for WalletNetWorthSummaryDto
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