pub struct CreateInternalWalletAssetRequest {
pub address: String,
pub tag: Option<String>,
}
Fields§
§address: String
The wallet’s address or, for EOS wallets, the account name
tag: Option<String>
for XRP wallets, the destination tag; for EOS, the memo; for the fiat providers (BLINC by BCB Group), the Bank Transfer Description
Implementations§
Source§impl CreateInternalWalletAssetRequest
impl CreateInternalWalletAssetRequest
pub fn new(address: String) -> CreateInternalWalletAssetRequest
Trait Implementations§
Source§impl Clone for CreateInternalWalletAssetRequest
impl Clone for CreateInternalWalletAssetRequest
Source§fn clone(&self) -> CreateInternalWalletAssetRequest
fn clone(&self) -> CreateInternalWalletAssetRequest
Returns a copy 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 Default for CreateInternalWalletAssetRequest
impl Default for CreateInternalWalletAssetRequest
Source§fn default() -> CreateInternalWalletAssetRequest
fn default() -> CreateInternalWalletAssetRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateInternalWalletAssetRequest
impl<'de> Deserialize<'de> for CreateInternalWalletAssetRequest
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 CreateInternalWalletAssetRequest
impl PartialEq for CreateInternalWalletAssetRequest
Source§fn eq(&self, other: &CreateInternalWalletAssetRequest) -> bool
fn eq(&self, other: &CreateInternalWalletAssetRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateInternalWalletAssetRequest
Auto Trait Implementations§
impl Freeze for CreateInternalWalletAssetRequest
impl RefUnwindSafe for CreateInternalWalletAssetRequest
impl Send for CreateInternalWalletAssetRequest
impl Sync for CreateInternalWalletAssetRequest
impl Unpin for CreateInternalWalletAssetRequest
impl UnwindSafe for CreateInternalWalletAssetRequest
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