pub struct IcrcFollowedArchiveBlockRow {
pub archive_canister_id: String,
pub callback_method: String,
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
IcrcFollowedArchiveBlockRow
Serializable row for one ICRC-3 block fetched from an archive callback.
Fields§
§archive_canister_id: String§callback_method: String§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 IcrcFollowedArchiveBlockRow
impl Clone for IcrcFollowedArchiveBlockRow
Source§fn clone(&self) -> IcrcFollowedArchiveBlockRow
fn clone(&self) -> IcrcFollowedArchiveBlockRow
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 IcrcFollowedArchiveBlockRow
impl Debug for IcrcFollowedArchiveBlockRow
impl Eq for IcrcFollowedArchiveBlockRow
impl StructuralPartialEq for IcrcFollowedArchiveBlockRow
Auto Trait Implementations§
impl Freeze for IcrcFollowedArchiveBlockRow
impl RefUnwindSafe for IcrcFollowedArchiveBlockRow
impl Send for IcrcFollowedArchiveBlockRow
impl Sync for IcrcFollowedArchiveBlockRow
impl Unpin for IcrcFollowedArchiveBlockRow
impl UnsafeUnpin for IcrcFollowedArchiveBlockRow
impl UnwindSafe for IcrcFollowedArchiveBlockRow
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