Skip to main content

ic_query/cache/
mod.rs

1//! Shared cache report models and host-only local inventory helpers.
2
3mod completeness;
4mod model;
5#[cfg(feature = "host")]
6mod status;
7#[cfg(feature = "host")]
8mod text;
9
10pub use completeness::{CacheCollectionCompleteness, validate_cache_collection_completeness};
11pub use model::{
12    CACHE_STATUS_REPORT_SCHEMA_VERSION, CacheAgeStatus, CacheHeaderStatus, CacheRecoveryPolicy,
13    CacheRefreshAttemptStatus, CacheRefreshLockStatus, CacheRefreshLockStatusRow,
14    CacheStatusReport, CacheStatusRequest, CacheStatusRow, CacheValidationStatus,
15};
16#[cfg(feature = "host")]
17pub use status::{CacheStatusError, build_cache_status_report};
18#[cfg(feature = "host")]
19pub use text::cache_status_report_text;