pub struct IcrcBlockTypesReport {
pub schema_version: u32,
pub ledger_canister_id: String,
pub fetched_at: String,
pub source_endpoint: String,
pub fetched_by: String,
pub block_types: Vec<IcrcBlockTypeRow>,
}Expand description
IcrcBlockTypesReport
Serializable report for generic ICRC-3 supported block type discovery.
Fields§
§schema_version: u32§ledger_canister_id: String§fetched_at: String§source_endpoint: String§fetched_by: String§block_types: Vec<IcrcBlockTypeRow>Trait Implementations§
Source§impl Clone for IcrcBlockTypesReport
impl Clone for IcrcBlockTypesReport
Source§fn clone(&self) -> IcrcBlockTypesReport
fn clone(&self) -> IcrcBlockTypesReport
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 IcrcBlockTypesReport
impl Debug for IcrcBlockTypesReport
impl Eq for IcrcBlockTypesReport
Source§impl PartialEq for IcrcBlockTypesReport
impl PartialEq for IcrcBlockTypesReport
Source§impl Serialize for IcrcBlockTypesReport
impl Serialize for IcrcBlockTypesReport
impl StructuralPartialEq for IcrcBlockTypesReport
Auto Trait Implementations§
impl Freeze for IcrcBlockTypesReport
impl RefUnwindSafe for IcrcBlockTypesReport
impl Send for IcrcBlockTypesReport
impl Sync for IcrcBlockTypesReport
impl Unpin for IcrcBlockTypesReport
impl UnsafeUnpin for IcrcBlockTypesReport
impl UnwindSafe for IcrcBlockTypesReport
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