pub struct GetWalletAssetsResponse {
pub wallet_id: String,
pub network: Network,
pub assets: Vec<Value>,
pub net_worth: Option<Value>,
}Expand description
Get Wallet Assets
Fields§
§wallet_id: String§network: Network§assets: Vec<Value>§net_worth: Option<Value>Trait Implementations§
Source§impl Clone for GetWalletAssetsResponse
impl Clone for GetWalletAssetsResponse
Source§fn clone(&self) -> GetWalletAssetsResponse
fn clone(&self) -> GetWalletAssetsResponse
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 GetWalletAssetsResponse
impl Debug for GetWalletAssetsResponse
Source§impl<'de> Deserialize<'de> for GetWalletAssetsResponse
impl<'de> Deserialize<'de> for GetWalletAssetsResponse
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 GetWalletAssetsResponse
impl RefUnwindSafe for GetWalletAssetsResponse
impl Send for GetWalletAssetsResponse
impl Sync for GetWalletAssetsResponse
impl Unpin for GetWalletAssetsResponse
impl UnsafeUnpin for GetWalletAssetsResponse
impl UnwindSafe for GetWalletAssetsResponse
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