pub struct InferenceExplanation {Show 22 fields
pub batch_id: String,
pub source_envelope_id: String,
pub graph_hash: String,
pub execution_mode: String,
pub stop_reason: String,
pub stage_kinds: Vec<String>,
pub degradation_markers: Vec<String>,
pub witness_count: usize,
pub witness_node_ids: Vec<String>,
pub certificate_count: usize,
pub certificate_node_ids: Vec<String>,
pub residual_count: usize,
pub residual_micros: Vec<u64>,
pub syndrome_signatures: Vec<String>,
pub calibration_caveats: Vec<String>,
pub refutation_outcome: String,
pub causal_refutation_outcome: String,
pub minimal_perturbation_outcome: String,
pub oracle_mode: String,
pub oracle_supported: bool,
pub advisory_only: bool,
pub degraded_reason: Option<String>,
}Fields§
§batch_id: String§source_envelope_id: String§graph_hash: String§execution_mode: String§stop_reason: String§stage_kinds: Vec<String>§degradation_markers: Vec<String>§witness_count: usize§witness_node_ids: Vec<String>§certificate_count: usize§certificate_node_ids: Vec<String>§residual_count: usize§residual_micros: Vec<u64>§syndrome_signatures: Vec<String>§calibration_caveats: Vec<String>§refutation_outcome: String§causal_refutation_outcome: String§minimal_perturbation_outcome: String§oracle_mode: String§oracle_supported: bool§advisory_only: bool§degraded_reason: Option<String>Trait Implementations§
Source§impl Clone for InferenceExplanation
impl Clone for InferenceExplanation
Source§fn clone(&self) -> InferenceExplanation
fn clone(&self) -> InferenceExplanation
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 InferenceExplanation
impl Debug for InferenceExplanation
Source§impl<'de> Deserialize<'de> for InferenceExplanation
impl<'de> Deserialize<'de> for InferenceExplanation
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 InferenceExplanation
Source§impl JsonSchema for InferenceExplanation
impl JsonSchema for InferenceExplanation
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 moreSource§impl PartialEq for InferenceExplanation
impl PartialEq for InferenceExplanation
Source§fn eq(&self, other: &InferenceExplanation) -> bool
fn eq(&self, other: &InferenceExplanation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InferenceExplanation
impl Serialize for InferenceExplanation
impl StructuralPartialEq for InferenceExplanation
Auto Trait Implementations§
impl Freeze for InferenceExplanation
impl RefUnwindSafe for InferenceExplanation
impl Send for InferenceExplanation
impl Sync for InferenceExplanation
impl Unpin for InferenceExplanation
impl UnsafeUnpin for InferenceExplanation
impl UnwindSafe for InferenceExplanation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.