pub struct IcrcIndexReport {
pub schema_version: u32,
pub ledger_canister_id: String,
pub fetched_at: String,
pub source_endpoint: String,
pub fetched_by: String,
pub index_canister_id: Option<String>,
pub index_error: Option<String>,
}Expand description
IcrcIndexReport
Serializable report for one generic ICRC-106 index discovery lookup.
Fields§
§schema_version: u32§ledger_canister_id: String§fetched_at: String§source_endpoint: String§fetched_by: String§index_canister_id: Option<String>§index_error: Option<String>Trait Implementations§
Source§impl Clone for IcrcIndexReport
impl Clone for IcrcIndexReport
Source§fn clone(&self) -> IcrcIndexReport
fn clone(&self) -> IcrcIndexReport
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 IcrcIndexReport
impl Debug for IcrcIndexReport
impl Eq for IcrcIndexReport
Source§impl PartialEq for IcrcIndexReport
impl PartialEq for IcrcIndexReport
Source§impl Serialize for IcrcIndexReport
impl Serialize for IcrcIndexReport
impl StructuralPartialEq for IcrcIndexReport
Auto Trait Implementations§
impl Freeze for IcrcIndexReport
impl RefUnwindSafe for IcrcIndexReport
impl Send for IcrcIndexReport
impl Sync for IcrcIndexReport
impl Unpin for IcrcIndexReport
impl UnsafeUnpin for IcrcIndexReport
impl UnwindSafe for IcrcIndexReport
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