pub struct WalletContainer {
pub id: String,
pub name: String,
pub assets: Vec<WalletAssetExternal>,
pub customer_ref_id: Option<String>,
}
Fields§
§id: String
§name: String
§assets: Vec<WalletAssetExternal>
§customer_ref_id: Option<String>
Trait Implementations§
Source§impl Debug for WalletContainer
impl Debug for WalletContainer
Source§impl Default for WalletContainer
impl Default for WalletContainer
Source§fn default() -> WalletContainer
fn default() -> WalletContainer
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WalletContainer
impl<'de> Deserialize<'de> for WalletContainer
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<UnmanagedExternalWallet> for WalletContainer
impl From<UnmanagedExternalWallet> for WalletContainer
Source§fn from(value: UnmanagedExternalWallet) -> Self
fn from(value: UnmanagedExternalWallet) -> Self
Converts to this type from the input type.
Source§impl From<UnmanagedWallet> for WalletContainer
impl From<UnmanagedWallet> for WalletContainer
Source§fn from(value: UnmanagedWallet) -> Self
fn from(value: UnmanagedWallet) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletContainer
impl RefUnwindSafe for WalletContainer
impl Send for WalletContainer
impl Sync for WalletContainer
impl Unpin for WalletContainer
impl UnwindSafe for WalletContainer
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