pub struct WalletNetWorthByTokensResult {
pub current_timestamp: String,
pub data: Vec<WalletNetWorthItemDto>,
pub total_value_in_native: String,
pub total_value_in_usd: String,
pub wallet_address: String,
}Expand description
WalletNetWorthByTokensResult
JSON schema
{
"type": "object",
"required": [
"currentTimestamp",
"data",
"totalValueInNative",
"totalValueInUsd",
"walletAddress"
],
"properties": {
"currentTimestamp": {
"description": "DTO.WALLET.NET_WORTH.CURRENT_TIMESTAMP",
"examples": [
"2025-05-19T04:47:19.414Z"
],
"type": "string"
},
"data": {
"description": "DTO.PAGE.DATA",
"type": "array",
"items": {
"$ref": "#/components/schemas/WalletNetWorthItemDTO"
}
},
"totalValueInNative": {
"description": "DTO.WALLET.NET_WORTH.TOTAL_VALUE_IN_NATIVE",
"examples": [
"0.040382"
],
"type": "string"
},
"totalValueInUsd": {
"description": "DTO.WALLET.NET_WORTH.TOTAL_VALUE_IN_USD",
"examples": [
"3.369918"
],
"type": "string"
},
"walletAddress": {
"description": "DTO.WALLET.NET_WORTH.WALLET_ADDRESS",
"examples": [
"8X35rQUK2u9hfn8rMPwwr6ZSEUhbmfDPEapp589XyoM1"
],
"type": "string"
}
}
}Fields§
§current_timestamp: StringDTO.WALLET.NET_WORTH.CURRENT_TIMESTAMP
data: Vec<WalletNetWorthItemDto>DTO.PAGE.DATA
total_value_in_native: StringDTO.WALLET.NET_WORTH.TOTAL_VALUE_IN_NATIVE
total_value_in_usd: StringDTO.WALLET.NET_WORTH.TOTAL_VALUE_IN_USD
wallet_address: StringDTO.WALLET.NET_WORTH.WALLET_ADDRESS
Implementations§
Trait Implementations§
Source§impl Clone for WalletNetWorthByTokensResult
impl Clone for WalletNetWorthByTokensResult
Source§fn clone(&self) -> WalletNetWorthByTokensResult
fn clone(&self) -> WalletNetWorthByTokensResult
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 WalletNetWorthByTokensResult
impl Debug for WalletNetWorthByTokensResult
Source§impl<'de> Deserialize<'de> for WalletNetWorthByTokensResult
impl<'de> Deserialize<'de> for WalletNetWorthByTokensResult
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<&WalletNetWorthByTokensResult> for WalletNetWorthByTokensResult
impl From<&WalletNetWorthByTokensResult> for WalletNetWorthByTokensResult
Source§fn from(value: &WalletNetWorthByTokensResult) -> Self
fn from(value: &WalletNetWorthByTokensResult) -> Self
Converts to this type from the input type.
Source§impl From<WalletNetWorthByTokensResult> for WalletNetWorthByTokensResult
impl From<WalletNetWorthByTokensResult> for WalletNetWorthByTokensResult
Source§fn from(value: WalletNetWorthByTokensResult) -> Self
fn from(value: WalletNetWorthByTokensResult) -> Self
Converts to this type from the input type.
Source§impl TryFrom<WalletNetWorthByTokensResult> for WalletNetWorthByTokensResult
impl TryFrom<WalletNetWorthByTokensResult> for WalletNetWorthByTokensResult
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: WalletNetWorthByTokensResult,
) -> Result<Self, ConversionError>
fn try_from( value: WalletNetWorthByTokensResult, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for WalletNetWorthByTokensResult
impl RefUnwindSafe for WalletNetWorthByTokensResult
impl Send for WalletNetWorthByTokensResult
impl Sync for WalletNetWorthByTokensResult
impl Unpin for WalletNetWorthByTokensResult
impl UnsafeUnpin for WalletNetWorthByTokensResult
impl UnwindSafe for WalletNetWorthByTokensResult
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