Struct cfxcore_accounts::AccountMeta
source · pub struct AccountMeta {
pub name: String,
pub meta: String,
pub uuid: Option<String>,
}
Expand description
Collected account metadata
Fields§
§name: String
The name of the account.
meta: String
The rest of the metadata of the account.
uuid: Option<String>
The 128-bit Uuid of the account, if it has one (brain-wallets don’t).
Implementations§
Trait Implementations§
source§impl Clone for AccountMeta
impl Clone for AccountMeta
source§fn clone(&self) -> AccountMeta
fn clone(&self) -> AccountMeta
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 Debug for AccountMeta
impl Debug for AccountMeta
source§impl Default for AccountMeta
impl Default for AccountMeta
source§fn default() -> AccountMeta
fn default() -> AccountMeta
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AccountMeta
impl<'de> Deserialize<'de> for AccountMeta
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 AccountMeta
impl PartialEq for AccountMeta
source§fn eq(&self, other: &AccountMeta) -> bool
fn eq(&self, other: &AccountMeta) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for AccountMeta
impl Serialize for AccountMeta
impl StructuralPartialEq for AccountMeta
Auto Trait Implementations§
impl RefUnwindSafe for AccountMeta
impl Send for AccountMeta
impl Sync for AccountMeta
impl Unpin for AccountMeta
impl UnwindSafe for AccountMeta
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