pub struct AccountData {
pub data: String,
pub data_hash: String,
pub discriminator: u64,
}
Fields§
§data: String
A base 64 encoded string.
data_hash: String
A 32-byte hash represented as a base58 string.
discriminator: u64
Implementations§
Source§impl AccountData
impl AccountData
Trait Implementations§
Source§impl Clone for AccountData
impl Clone for AccountData
Source§fn clone(&self) -> AccountData
fn clone(&self) -> AccountData
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 AccountData
impl Debug for AccountData
Source§impl Default for AccountData
impl Default for AccountData
Source§fn default() -> AccountData
fn default() -> AccountData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountData
impl<'de> Deserialize<'de> for AccountData
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 AccountData
impl PartialEq for AccountData
Source§impl Serialize for AccountData
impl Serialize for AccountData
impl StructuralPartialEq for AccountData
Auto Trait Implementations§
impl Freeze for AccountData
impl RefUnwindSafe for AccountData
impl Send for AccountData
impl Sync for AccountData
impl Unpin for AccountData
impl UnwindSafe for AccountData
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