pub struct IcrcAccountRow {
pub owner: Option<String>,
pub subaccount_hex: Option<String>,
pub account_identifier: Option<String>,
}Expand description
IcrcAccountRow
Serializable ICRC account identity used in account-transaction rows.
Fields§
§owner: Option<String>ICRC account owner principal when the index uses structured accounts.
subaccount_hex: Option<String>Optional 32-byte subaccount as lowercase hex.
account_identifier: Option<String>Legacy ICP account identifier when the index returns identifier text.
Trait Implementations§
Source§impl Clone for IcrcAccountRow
impl Clone for IcrcAccountRow
Source§fn clone(&self) -> IcrcAccountRow
fn clone(&self) -> IcrcAccountRow
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 IcrcAccountRow
impl Debug for IcrcAccountRow
Source§impl<'de> Deserialize<'de> for IcrcAccountRow
impl<'de> Deserialize<'de> for IcrcAccountRow
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
impl Eq for IcrcAccountRow
Source§impl PartialEq for IcrcAccountRow
impl PartialEq for IcrcAccountRow
Source§impl Serialize for IcrcAccountRow
impl Serialize for IcrcAccountRow
impl StructuralPartialEq for IcrcAccountRow
Auto Trait Implementations§
impl Freeze for IcrcAccountRow
impl RefUnwindSafe for IcrcAccountRow
impl Send for IcrcAccountRow
impl Sync for IcrcAccountRow
impl Unpin for IcrcAccountRow
impl UnsafeUnpin for IcrcAccountRow
impl UnwindSafe for IcrcAccountRow
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