pub struct CCSpecialAddress {
pub name: Option<String>,
pub blockchain: Option<String>,
pub address: Option<String>,
pub description: Option<String>,
}
Fields§
§name: Option<String>
The name of the address. Contract name or just the common name for this address.
blockchain: Option<String>
The is linked to the asset representing a specific chain.
address: Option<String>
The address of the smart contracts, external user accounts or other account.
description: Option<String>
A description for the address.
Trait Implementations§
Source§impl Debug for CCSpecialAddress
impl Debug for CCSpecialAddress
Source§impl<'de> Deserialize<'de> for CCSpecialAddress
impl<'de> Deserialize<'de> for CCSpecialAddress
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 CCSpecialAddress
impl RefUnwindSafe for CCSpecialAddress
impl Send for CCSpecialAddress
impl Sync for CCSpecialAddress
impl Unpin for CCSpecialAddress
impl UnwindSafe for CCSpecialAddress
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