pub struct CryptoWhitelistAddress {
pub id: String,
pub account_id: String,
pub asset: String,
pub address: String,
pub chain: CryptoChain,
pub label: Option<String>,
pub created_at: DateTime<Utc>,
}Expand description
Whitelisted crypto address.
Fields§
§id: StringWhitelist ID.
account_id: StringAccount ID.
asset: StringAsset symbol.
address: StringWhitelisted address.
chain: CryptoChainChain.
label: Option<String>Label/nickname.
created_at: DateTime<Utc>Created at timestamp.
Trait Implementations§
Source§impl Clone for CryptoWhitelistAddress
impl Clone for CryptoWhitelistAddress
Source§fn clone(&self) -> CryptoWhitelistAddress
fn clone(&self) -> CryptoWhitelistAddress
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 CryptoWhitelistAddress
impl Debug for CryptoWhitelistAddress
Source§impl<'de> Deserialize<'de> for CryptoWhitelistAddress
impl<'de> Deserialize<'de> for CryptoWhitelistAddress
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CryptoWhitelistAddress, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CryptoWhitelistAddress, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CryptoWhitelistAddress
impl Serialize for CryptoWhitelistAddress
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for CryptoWhitelistAddress
impl RefUnwindSafe for CryptoWhitelistAddress
impl Send for CryptoWhitelistAddress
impl Sync for CryptoWhitelistAddress
impl Unpin for CryptoWhitelistAddress
impl UnwindSafe for CryptoWhitelistAddress
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