pub struct IcCanisterCountReport {
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,
pub filters: IcCanisterFilters,
pub total: u64,
}Expand description
IcCanisterCountReport
One filtered canister count from the official Dashboard API.
Fields§
§schema_version: u32Report schema version.
network: StringNetwork represented by the official Dashboard API.
Authority that supplied the report fields.
source_endpoint: StringDashboard API v4 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.
filters: IcCanisterFiltersFilters applied by the Dashboard.
total: u64Number of matching Dashboard canister records.
Trait Implementations§
Source§impl Clone for IcCanisterCountReport
impl Clone for IcCanisterCountReport
Source§fn clone(&self) -> IcCanisterCountReport
fn clone(&self) -> IcCanisterCountReport
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 IcCanisterCountReport
impl Debug for IcCanisterCountReport
impl Eq for IcCanisterCountReport
Source§impl PartialEq for IcCanisterCountReport
impl PartialEq for IcCanisterCountReport
Source§impl Serialize for IcCanisterCountReport
impl Serialize for IcCanisterCountReport
impl StructuralPartialEq for IcCanisterCountReport
Auto Trait Implementations§
impl Freeze for IcCanisterCountReport
impl RefUnwindSafe for IcCanisterCountReport
impl Send for IcCanisterCountReport
impl Sync for IcCanisterCountReport
impl Unpin for IcCanisterCountReport
impl UnsafeUnpin for IcCanisterCountReport
impl UnwindSafe for IcCanisterCountReport
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