pub struct ComparabilitySnapshot {
pub workload_id: String,
pub backend_family: String,
pub selected_checks: Vec<String>,
pub timeout_class: String,
pub config_flags: Vec<String>,
pub comparable: Option<bool>,
pub violations: Vec<String>,
}Expand description
Immutable comparability snapshot for a paired experiment family.
Fields§
§workload_id: StringWhich workload was exercised.
backend_family: StringBackend family used for execution.
selected_checks: Vec<String>Ordered list of checks run for the pair.
timeout_class: StringEffective timeout class.
config_flags: Vec<String>Sorted execution-affecting flags.
comparable: Option<bool>Explicit verdict when known; None preserves absence rather than inference.
violations: Vec<String>Violations recorded during comparability checking.
Trait Implementations§
Source§impl Clone for ComparabilitySnapshot
impl Clone for ComparabilitySnapshot
Source§fn clone(&self) -> ComparabilitySnapshot
fn clone(&self) -> ComparabilitySnapshot
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 ComparabilitySnapshot
impl Debug for ComparabilitySnapshot
Source§impl<'de> Deserialize<'de> for ComparabilitySnapshot
impl<'de> Deserialize<'de> for ComparabilitySnapshot
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 ComparabilitySnapshot
impl JsonSchema for ComparabilitySnapshot
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 ComparabilitySnapshot
impl RefUnwindSafe for ComparabilitySnapshot
impl Send for ComparabilitySnapshot
impl Sync for ComparabilitySnapshot
impl Unpin for ComparabilitySnapshot
impl UnsafeUnpin for ComparabilitySnapshot
impl UnwindSafe for ComparabilitySnapshot
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