pub struct IcrcTipCertificateReport {
pub schema_version: u32,
pub ledger_canister_id: String,
pub fetched_at: String,
pub source_endpoint: String,
pub fetched_by: String,
pub certificate_present: bool,
pub certificate_hex: Option<String>,
pub certificate_bytes: Option<usize>,
pub hash_tree_hex: Option<String>,
pub hash_tree_bytes: Option<usize>,
}Expand description
IcrcTipCertificateReport
Serializable report for a generic ICRC-3 ledger tip certificate.
Fields§
§schema_version: u32§ledger_canister_id: String§fetched_at: String§source_endpoint: String§fetched_by: String§certificate_present: bool§certificate_hex: Option<String>§certificate_bytes: Option<usize>§hash_tree_hex: Option<String>§hash_tree_bytes: Option<usize>Trait Implementations§
Source§impl Clone for IcrcTipCertificateReport
impl Clone for IcrcTipCertificateReport
Source§fn clone(&self) -> IcrcTipCertificateReport
fn clone(&self) -> IcrcTipCertificateReport
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 IcrcTipCertificateReport
impl Debug for IcrcTipCertificateReport
impl Eq for IcrcTipCertificateReport
Source§impl PartialEq for IcrcTipCertificateReport
impl PartialEq for IcrcTipCertificateReport
Source§fn eq(&self, other: &IcrcTipCertificateReport) -> bool
fn eq(&self, other: &IcrcTipCertificateReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IcrcTipCertificateReport
impl Serialize for IcrcTipCertificateReport
impl StructuralPartialEq for IcrcTipCertificateReport
Auto Trait Implementations§
impl Freeze for IcrcTipCertificateReport
impl RefUnwindSafe for IcrcTipCertificateReport
impl Send for IcrcTipCertificateReport
impl Sync for IcrcTipCertificateReport
impl Unpin for IcrcTipCertificateReport
impl UnsafeUnpin for IcrcTipCertificateReport
impl UnwindSafe for IcrcTipCertificateReport
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