pub struct CmcReportContext {
pub schema_version: u32,
pub network: String,
pub cmc_canister_id: String,
pub fetched_at: String,
pub source_endpoint: String,
pub fetched_by: String,
}Expand description
CmcReportContext
Provenance shared by direct Cycle Minting Canister reports.
Fields§
§schema_version: u32Report schema version.
network: StringQueried network identity.
cmc_canister_id: StringCycle Minting Canister principal.
fetched_at: StringUTC collection timestamp.
source_endpoint: StringReplica endpoint used for the query.
fetched_by: StringCollector identity.
Trait Implementations§
Source§impl Clone for CmcReportContext
impl Clone for CmcReportContext
Source§fn clone(&self) -> CmcReportContext
fn clone(&self) -> CmcReportContext
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 CmcReportContext
impl Debug for CmcReportContext
Source§impl<'de> Deserialize<'de> for CmcReportContext
impl<'de> Deserialize<'de> for CmcReportContext
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CmcReportContext
Source§impl PartialEq for CmcReportContext
impl PartialEq for CmcReportContext
Source§impl Serialize for CmcReportContext
impl Serialize for CmcReportContext
impl StructuralPartialEq for CmcReportContext
Auto Trait Implementations§
impl Freeze for CmcReportContext
impl RefUnwindSafe for CmcReportContext
impl Send for CmcReportContext
impl Sync for CmcReportContext
impl Unpin for CmcReportContext
impl UnsafeUnpin for CmcReportContext
impl UnwindSafe for CmcReportContext
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