pub struct IcrcTransactionBlockRow {
pub index: String,
pub block_type: Option<String>,
pub transaction_kind: Option<String>,
pub timestamp_unix_nanos: Option<String>,
pub amount_base_units: Option<String>,
pub raw_block: Value,
}Expand description
IcrcTransactionBlockRow
Serializable row for one ICRC-3 block returned by a ledger canister.
Fields§
§index: String§block_type: Option<String>§transaction_kind: Option<String>§timestamp_unix_nanos: Option<String>§amount_base_units: Option<String>§raw_block: ValueTrait Implementations§
Source§impl Clone for IcrcTransactionBlockRow
impl Clone for IcrcTransactionBlockRow
Source§fn clone(&self) -> IcrcTransactionBlockRow
fn clone(&self) -> IcrcTransactionBlockRow
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 IcrcTransactionBlockRow
impl Debug for IcrcTransactionBlockRow
impl Eq for IcrcTransactionBlockRow
Source§impl PartialEq for IcrcTransactionBlockRow
impl PartialEq for IcrcTransactionBlockRow
Source§fn eq(&self, other: &IcrcTransactionBlockRow) -> bool
fn eq(&self, other: &IcrcTransactionBlockRow) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IcrcTransactionBlockRow
impl Serialize for IcrcTransactionBlockRow
impl StructuralPartialEq for IcrcTransactionBlockRow
Auto Trait Implementations§
impl Freeze for IcrcTransactionBlockRow
impl RefUnwindSafe for IcrcTransactionBlockRow
impl Send for IcrcTransactionBlockRow
impl Sync for IcrcTransactionBlockRow
impl Unpin for IcrcTransactionBlockRow
impl UnsafeUnpin for IcrcTransactionBlockRow
impl UnwindSafe for IcrcTransactionBlockRow
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.