pub struct AccountData {
pub sequence_number: String,
pub authentication_key: String,
}Expand description
AccountData : Account data A simplified version of the onchain Account resource
Fields§
§sequence_number: StringA string containing a 64-bit unsigned integer. We represent u64 values as a string to ensure compatibility with languages such as JavaScript that do not parse u64s in JSON natively.
authentication_key: StringAll bytes (Vec0x and fulfilled with two hex digits per byte. Unlike the Address type, HexEncodedBytes will not trim any zeros.
Implementations§
Source§impl AccountData
impl AccountData
Sourcepub fn new(sequence_number: String, authentication_key: String) -> AccountData
pub fn new(sequence_number: String, authentication_key: String) -> AccountData
Account data A simplified version of the onchain Account resource
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 (const: unstable) · 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§fn eq(&self, other: &AccountData) -> bool
fn eq(&self, other: &AccountData) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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