pub struct WalletNetWorthChartDto {
pub current_timestamp: String,
pub history: Vec<WalletNetWorthHistoryItemDto>,
pub past_timestamp: String,
pub wallet_address: String,
}Expand description
WalletNetWorthChartDto
JSON schema
{
"type": "object",
"required": [
"currentTimestamp",
"history",
"pastTimestamp",
"walletAddress"
],
"properties": {
"currentTimestamp": {
"description": "DTO.WALLET.NET_WORTH_CHART.CURRENT_TIMESTAMP",
"examples": [
"2025-07-31T23:59:59.000Z"
],
"type": "string"
},
"history": {
"description": "DTO.WALLET.NET_WORTH_CHART.HISTORY",
"type": "array",
"items": {
"$ref": "#/components/schemas/WalletNetWorthHistoryItemDTO"
}
},
"pastTimestamp": {
"description": "DTO.WALLET.NET_WORTH_CHART.PAST_TIMESTAMP",
"examples": [
"2025-07-01T23:59:59.000Z"
],
"type": "string"
},
"walletAddress": {
"description": "DTO.WALLET.NET_WORTH_CHART.WALLET_ADDRESS",
"examples": [
"HV1KXxWFaSeriyFvXyx48FqG9BoFbfinB8njCJonqP7K"
],
"type": "string"
}
}
}Fields§
§current_timestamp: StringDTO.WALLET.NET_WORTH_CHART.CURRENT_TIMESTAMP
history: Vec<WalletNetWorthHistoryItemDto>DTO.WALLET.NET_WORTH_CHART.HISTORY
past_timestamp: StringDTO.WALLET.NET_WORTH_CHART.PAST_TIMESTAMP
wallet_address: StringDTO.WALLET.NET_WORTH_CHART.WALLET_ADDRESS
Implementations§
Source§impl WalletNetWorthChartDto
impl WalletNetWorthChartDto
pub fn builder() -> WalletNetWorthChartDto
Trait Implementations§
Source§impl Clone for WalletNetWorthChartDto
impl Clone for WalletNetWorthChartDto
Source§fn clone(&self) -> WalletNetWorthChartDto
fn clone(&self) -> WalletNetWorthChartDto
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 WalletNetWorthChartDto
impl Debug for WalletNetWorthChartDto
Source§impl<'de> Deserialize<'de> for WalletNetWorthChartDto
impl<'de> Deserialize<'de> for WalletNetWorthChartDto
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<&WalletNetWorthChartDto> for WalletNetWorthChartDto
impl From<&WalletNetWorthChartDto> for WalletNetWorthChartDto
Source§fn from(value: &WalletNetWorthChartDto) -> Self
fn from(value: &WalletNetWorthChartDto) -> Self
Converts to this type from the input type.
Source§impl From<WalletNetWorthChartDto> for WalletNetWorthChartDto
impl From<WalletNetWorthChartDto> for WalletNetWorthChartDto
Source§fn from(value: WalletNetWorthChartDto) -> Self
fn from(value: WalletNetWorthChartDto) -> Self
Converts to this type from the input type.
Source§impl Serialize for WalletNetWorthChartDto
impl Serialize for WalletNetWorthChartDto
Source§impl TryFrom<WalletNetWorthChartDto> for WalletNetWorthChartDto
impl TryFrom<WalletNetWorthChartDto> for WalletNetWorthChartDto
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: WalletNetWorthChartDto) -> Result<Self, ConversionError>
fn try_from(value: WalletNetWorthChartDto) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for WalletNetWorthChartDto
impl RefUnwindSafe for WalletNetWorthChartDto
impl Send for WalletNetWorthChartDto
impl Sync for WalletNetWorthChartDto
impl Unpin for WalletNetWorthChartDto
impl UnwindSafe for WalletNetWorthChartDto
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