pub struct CloudEngineReportContext {
pub schema_version: u32,
pub network: String,
pub authority: String,
pub engine_canister_id: String,
pub fetched_at: String,
pub source_endpoint: String,
pub fetched_by: String,
pub certified: bool,
pub point_in_time_guaranteed: bool,
pub query_call_count: usize,
}Expand description
CloudEngineReportContext
Provenance shared by direct CloudEngine control-plane reports.
Fields§
§schema_version: u32Report schema version.
network: StringQueried network identity.
Authority represented by the report.
engine_canister_id: StringCloudEngine control-plane registry canister principal.
fetched_at: StringUTC collection timestamp.
source_endpoint: StringReplica endpoint used for the queries.
fetched_by: StringCollector identity.
certified: boolWhether the application data was cryptographically certified.
point_in_time_guaranteed: boolWhether sequential calls form one point-in-time view.
query_call_count: usizeNumber of native canister query calls represented by the report.
Trait Implementations§
Source§impl Clone for CloudEngineReportContext
impl Clone for CloudEngineReportContext
Source§fn clone(&self) -> CloudEngineReportContext
fn clone(&self) -> CloudEngineReportContext
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 CloudEngineReportContext
impl Debug for CloudEngineReportContext
Source§impl<'de> Deserialize<'de> for CloudEngineReportContext
impl<'de> Deserialize<'de> for CloudEngineReportContext
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 CloudEngineReportContext
Source§impl PartialEq for CloudEngineReportContext
impl PartialEq for CloudEngineReportContext
Source§impl Serialize for CloudEngineReportContext
impl Serialize for CloudEngineReportContext
impl StructuralPartialEq for CloudEngineReportContext
Auto Trait Implementations§
impl Freeze for CloudEngineReportContext
impl RefUnwindSafe for CloudEngineReportContext
impl Send for CloudEngineReportContext
impl Sync for CloudEngineReportContext
impl Unpin for CloudEngineReportContext
impl UnsafeUnpin for CloudEngineReportContext
impl UnwindSafe for CloudEngineReportContext
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