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": {
"description": "List of token net-worth items",
"type": "array",
"items": {
"$ref": "#/components/schemas/NetWorthByTokensItem"
}
},
"endCursor": {
"description": "Cursor for the end of current page",
"examples": [
"eyJpZCI6ImVuZCJ9"
],
"type": "string"
},
"hasNext": {
"description": "Whether there is a next page",
"examples": [
false
],
"type": "boolean"
},
"hasPrev": {
"description": "Whether there is a previous page",
"examples": [
false
],
"type": "boolean"
},
"netWorth": {
"description": "Net worth value in USD",
"examples": [
"11839478.53162622"
],
"type": "string"
},
"requestedTimestamp": {
"description": "Requested snapshot timestamp",
"examples": [
"2025-07-31T04:50:06.303Z"
],
"type": "string"
},
"resolvedTimestamp": {
"description": "Actual resolved snapshot timestamp",
"examples": [
"2025-07-31T04:50:06.475Z"
],
"type": "string"
},
"startCursor": {
"description": "Cursor for the start of current page",
"examples": [
"eyJpZCI6InN0YXJ0In0="
],
"type": "string"
},
"walletAddress": {
"description": "Wallet address",
"examples": [
"3xd4LGVWtYXLBspR6X5JWbW49NXmEehfPtX6Kqx98b4w"
],
"type": "string"
}
}
}Fields§
§data: Vec<NetWorthByTokensItem>List of token net-worth items
end_cursor: Option<String>Cursor for the end of current page
has_next: Option<bool>Whether there is a next page
has_prev: Option<bool>Whether there is a previous page
net_worth: StringNet worth value in USD
requested_timestamp: StringRequested snapshot timestamp
resolved_timestamp: StringActual resolved snapshot timestamp
start_cursor: Option<String>Cursor for the start of current page
wallet_address: StringWallet address
Implementations§
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 (const: unstable) · 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