pub struct ExternalWalletAsset {
pub id: Option<String>,
pub status: Option<ConfigChangeRequestStatus>,
pub address: Option<String>,
pub balance: Option<String>,
pub locked_amount: Option<String>,
pub tag: Option<String>,
pub activation_time: Option<String>,
pub additional_info: Option<Vec<WalletAssetAdditionalInfo>>,
}
Fields§
§id: Option<String>
§status: Option<ConfigChangeRequestStatus>
§address: Option<String>
§balance: Option<String>
§locked_amount: Option<String>
§tag: Option<String>
§activation_time: Option<String>
§additional_info: Option<Vec<WalletAssetAdditionalInfo>>
Implementations§
Source§impl ExternalWalletAsset
impl ExternalWalletAsset
pub fn new() -> ExternalWalletAsset
Trait Implementations§
Source§impl Clone for ExternalWalletAsset
impl Clone for ExternalWalletAsset
Source§fn clone(&self) -> ExternalWalletAsset
fn clone(&self) -> ExternalWalletAsset
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 ExternalWalletAsset
impl Debug for ExternalWalletAsset
Source§impl Default for ExternalWalletAsset
impl Default for ExternalWalletAsset
Source§fn default() -> ExternalWalletAsset
fn default() -> ExternalWalletAsset
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExternalWalletAsset
impl<'de> Deserialize<'de> for ExternalWalletAsset
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 PartialEq for ExternalWalletAsset
impl PartialEq for ExternalWalletAsset
Source§impl Serialize for ExternalWalletAsset
impl Serialize for ExternalWalletAsset
impl StructuralPartialEq for ExternalWalletAsset
Auto Trait Implementations§
impl Freeze for ExternalWalletAsset
impl RefUnwindSafe for ExternalWalletAsset
impl Send for ExternalWalletAsset
impl Sync for ExternalWalletAsset
impl Unpin for ExternalWalletAsset
impl UnwindSafe for ExternalWalletAsset
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