pub struct AccountAssets {
pub data: Vec<AccountAsset>,
pub last_updated: LastUpdated,
pub next_cursor: Option<String>,
}
Fields§
§data: Vec<AccountAsset>
§last_updated: LastUpdated
§next_cursor: Option<String>
Trait Implementations§
Source§impl Clone for AccountAssets
impl Clone for AccountAssets
Source§fn clone(&self) -> AccountAssets
fn clone(&self) -> AccountAssets
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 AccountAssets
impl Debug for AccountAssets
Source§impl<'de> Deserialize<'de> for AccountAssets
impl<'de> Deserialize<'de> for AccountAssets
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
Auto Trait Implementations§
impl Freeze for AccountAssets
impl RefUnwindSafe for AccountAssets
impl Send for AccountAssets
impl Sync for AccountAssets
impl Unpin for AccountAssets
impl UnwindSafe for AccountAssets
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