pub struct WalletNetWorthDetailsPage {
pub data: Vec<NetWorthByTokensItem>,
pub end_cursor: Option<String>,
pub has_next: Option<bool>,
pub has_prev: Option<bool>,
pub net_worth: String,
pub requested_timestamp: String,
pub resolved_timestamp: String,
pub start_cursor: Option<String>,
pub wallet_address: String,
}Expand description
Paginated wallet net-worth details (mirrors TS WalletNetWorthDetailsPage).
JSON schema
{
"description": "Paginated wallet net-worth details (mirrors TS WalletNetWorthDetailsPage).",
"type": "object",
"required": [
"data",
"netWorth",
"requestedTimestamp",
"resolvedTimestamp",
"walletAddress"
],
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NetWorthByTokensItem"
}
},
"endCursor": {
"examples": [
"eyJpZCI6ImVuZCJ9"
],
"type": "string"
},
"hasNext": {
"examples": [
false
],
"type": "boolean"
},
"hasPrev": {
"examples": [
false
],
"type": "boolean"
},
"netWorth": {
"examples": [
"11839478.53162622"
],
"type": "string"
},
"requestedTimestamp": {
"examples": [
"2025-07-31T04:50:06.303Z"
],
"type": "string"
},
"resolvedTimestamp": {
"examples": [
"2025-07-31T04:50:06.475Z"
],
"type": "string"
},
"startCursor": {
"examples": [
"eyJpZCI6InN0YXJ0In0="
],
"type": "string"
},
"walletAddress": {
"examples": [
"3xd4LGVWtYXLBspR6X5JWbW49NXmEehfPtX6Kqx98b4w"
],
"type": "string"
}
}
}Fields§
§data: Vec<NetWorthByTokensItem>§end_cursor: Option<String>§has_next: Option<bool>§has_prev: Option<bool>§net_worth: String§requested_timestamp: String§resolved_timestamp: String§start_cursor: Option<String>§wallet_address: StringImplementations§
Source§impl WalletNetWorthDetailsPage
impl WalletNetWorthDetailsPage
pub fn builder() -> WalletNetWorthDetailsPage
Trait Implementations§
Source§impl Clone for WalletNetWorthDetailsPage
impl Clone for WalletNetWorthDetailsPage
Source§fn clone(&self) -> WalletNetWorthDetailsPage
fn clone(&self) -> WalletNetWorthDetailsPage
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 WalletNetWorthDetailsPage
impl Debug for WalletNetWorthDetailsPage
Source§impl<'de> Deserialize<'de> for WalletNetWorthDetailsPage
impl<'de> Deserialize<'de> for WalletNetWorthDetailsPage
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<&WalletNetWorthDetailsPage> for WalletNetWorthDetailsPage
impl From<&WalletNetWorthDetailsPage> for WalletNetWorthDetailsPage
Source§fn from(value: &WalletNetWorthDetailsPage) -> Self
fn from(value: &WalletNetWorthDetailsPage) -> Self
Converts to this type from the input type.
Source§impl From<WalletNetWorthDetailsPage> for WalletNetWorthDetailsPage
impl From<WalletNetWorthDetailsPage> for WalletNetWorthDetailsPage
Source§fn from(value: WalletNetWorthDetailsPage) -> Self
fn from(value: WalletNetWorthDetailsPage) -> Self
Converts to this type from the input type.
Source§impl TryFrom<WalletNetWorthDetailsPage> for WalletNetWorthDetailsPage
impl TryFrom<WalletNetWorthDetailsPage> for WalletNetWorthDetailsPage
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: WalletNetWorthDetailsPage) -> Result<Self, ConversionError>
fn try_from(value: WalletNetWorthDetailsPage) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for WalletNetWorthDetailsPage
impl RefUnwindSafe for WalletNetWorthDetailsPage
impl Send for WalletNetWorthDetailsPage
impl Sync for WalletNetWorthDetailsPage
impl Unpin for WalletNetWorthDetailsPage
impl UnsafeUnpin for WalletNetWorthDetailsPage
impl UnwindSafe for WalletNetWorthDetailsPage
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