pub struct RuntimeQueryProvenanceV1 {Show 20 fields
pub schema_version: String,
pub trace_ctx: TraceCtx,
pub scope: ScopeKey,
pub classification_mode: String,
pub classification_reason: Option<String>,
pub query: String,
pub requested_views: Vec<RuntimeView>,
pub executed_views: Vec<RuntimeView>,
pub widenings: Vec<WideningDisclosure>,
pub warnings: Vec<QueryWarning>,
pub kernel_degraded_reason: Option<String>,
pub leg_strategies: Vec<String>,
pub leg_timings_ms: Vec<u64>,
pub total_duration_ms: u64,
pub raw_result_count: usize,
pub merged_result_count: usize,
pub duplicates_fused: usize,
pub valid_as_of: Option<String>,
pub recorded_as_of: Option<String>,
pub temporal_mode: Option<String>,
}Expand description
Versioned provenance record summarizing a full query execution for downstream audit.
Fields§
§schema_version: String§trace_ctx: TraceCtx§scope: ScopeKey§classification_mode: String§classification_reason: Option<String>§query: String§requested_views: Vec<RuntimeView>§executed_views: Vec<RuntimeView>§widenings: Vec<WideningDisclosure>§warnings: Vec<QueryWarning>§kernel_degraded_reason: Option<String>§leg_strategies: Vec<String>§leg_timings_ms: Vec<u64>§total_duration_ms: u64§raw_result_count: usize§merged_result_count: usize§duplicates_fused: usize§valid_as_of: Option<String>Bitemporal valid-time coordinate used for this query, if temporal.
recorded_as_of: Option<String>Bitemporal recorded-time ceiling used for this query, if temporal.
temporal_mode: Option<String>How the temporal coordinates were resolved: “exact”, “downgraded”, “none”.
Trait Implementations§
Source§impl Clone for RuntimeQueryProvenanceV1
impl Clone for RuntimeQueryProvenanceV1
Source§fn clone(&self) -> RuntimeQueryProvenanceV1
fn clone(&self) -> RuntimeQueryProvenanceV1
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 RuntimeQueryProvenanceV1
impl Debug for RuntimeQueryProvenanceV1
Source§impl<'de> Deserialize<'de> for RuntimeQueryProvenanceV1
impl<'de> Deserialize<'de> for RuntimeQueryProvenanceV1
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
Source§impl JsonSchema for RuntimeQueryProvenanceV1
impl JsonSchema for RuntimeQueryProvenanceV1
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for RuntimeQueryProvenanceV1
impl RefUnwindSafe for RuntimeQueryProvenanceV1
impl Send for RuntimeQueryProvenanceV1
impl Sync for RuntimeQueryProvenanceV1
impl Unpin for RuntimeQueryProvenanceV1
impl UnsafeUnpin for RuntimeQueryProvenanceV1
impl UnwindSafe for RuntimeQueryProvenanceV1
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