pub struct SpecialAddress {
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 Clone for SpecialAddress
impl Clone for SpecialAddress
Source§fn clone(&self) -> SpecialAddress
fn clone(&self) -> SpecialAddress
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 SpecialAddress
impl Debug for SpecialAddress
Source§impl<'de> Deserialize<'de> for SpecialAddress
impl<'de> Deserialize<'de> for SpecialAddress
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 SpecialAddress
impl RefUnwindSafe for SpecialAddress
impl Send for SpecialAddress
impl Sync for SpecialAddress
impl Unpin for SpecialAddress
impl UnsafeUnpin for SpecialAddress
impl UnwindSafe for SpecialAddress
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