pub struct IcDashboardReportProvenance {
pub schema_version: u32,
pub network: String,
pub authority: String,
pub source_endpoint: String,
pub fetched_at: String,
pub fetched_by: String,
pub certified: bool,
pub point_in_time_guaranteed: bool,
}Expand description
IcDashboardReportProvenance
Shared off-chain provenance and authority guarantees for Dashboard reports.
Fields§
§schema_version: u32Report schema version.
network: StringNetwork represented by the official Dashboard API.
Authority that supplied the report fields.
source_endpoint: StringDashboard API base endpoint queried by the source.
fetched_at: StringTime this report was collected.
fetched_by: StringCollector identity.
certified: boolWhether the API response is cryptographically certified IC state.
point_in_time_guaranteed: boolWhether every returned value is guaranteed to describe one point in time.
Trait Implementations§
Source§impl Clone for IcDashboardReportProvenance
impl Clone for IcDashboardReportProvenance
Source§fn clone(&self) -> IcDashboardReportProvenance
fn clone(&self) -> IcDashboardReportProvenance
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 IcDashboardReportProvenance
impl Debug for IcDashboardReportProvenance
impl Eq for IcDashboardReportProvenance
impl StructuralPartialEq for IcDashboardReportProvenance
Auto Trait Implementations§
impl Freeze for IcDashboardReportProvenance
impl RefUnwindSafe for IcDashboardReportProvenance
impl Send for IcDashboardReportProvenance
impl Sync for IcDashboardReportProvenance
impl Unpin for IcDashboardReportProvenance
impl UnsafeUnpin for IcDashboardReportProvenance
impl UnwindSafe for IcDashboardReportProvenance
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