pub struct Subaccount(pub [u8; 32]);Expand description
Subaccount is an arbitrary 32-byte byte array. Ledger uses subaccounts to compute account address, which enables one principal to control multiple ledger accounts.
Tuple Fields§
§0: [u8; 32]Trait Implementations§
Source§impl CandidType for Subaccount
impl CandidType for Subaccount
Source§impl Clone for Subaccount
impl Clone for Subaccount
Source§fn clone(&self) -> Subaccount
fn clone(&self) -> Subaccount
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 Subaccount
impl Debug for Subaccount
Source§impl<'de> Deserialize<'de> for Subaccount
impl<'de> Deserialize<'de> for Subaccount
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 From<Principal> for Subaccount
impl From<Principal> for Subaccount
Source§impl Hash for Subaccount
impl Hash for Subaccount
Source§impl Ord for Subaccount
impl Ord for Subaccount
Source§fn cmp(&self, other: &Subaccount) -> Ordering
fn cmp(&self, other: &Subaccount) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Subaccount
impl PartialEq for Subaccount
Source§impl PartialOrd for Subaccount
impl PartialOrd for Subaccount
Source§impl Serialize for Subaccount
impl Serialize for Subaccount
impl Copy for Subaccount
impl Eq for Subaccount
impl StructuralPartialEq for Subaccount
Auto Trait Implementations§
impl Freeze for Subaccount
impl RefUnwindSafe for Subaccount
impl Send for Subaccount
impl Sync for Subaccount
impl Unpin for Subaccount
impl UnwindSafe for Subaccount
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