ic-query 0.26.5

Internet Computer query library for NNS, SNS, ICRC, system canisters, and public network metadata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Shared cache report models and host-only local inventory helpers.

mod model;
#[cfg(feature = "host")]
mod status;
#[cfg(feature = "host")]
mod text;

pub use model::{
    CACHE_STATUS_REPORT_SCHEMA_VERSION, CacheFileStatus, CacheRefreshLockStatus,
    CacheRefreshLockStatusRow, CacheStatusReport, CacheStatusRequest, CacheStatusRow,
    CacheValidationStatus,
};
#[cfg(feature = "host")]
pub use status::{CacheStatusError, build_cache_status_report};
#[cfg(feature = "host")]
pub use text::cache_status_report_text;