pub struct FitRunV1 {Show 15 fields
pub schema_version: String,
pub fit_run_id: FitRunId,
pub mechanism_bundle_id: MechanismBundleId,
pub theory_version_id: TheoryVersionId,
pub simulation_contract_id: SimulationContractId,
pub fit_score: f64,
pub disposition: FitDisposition,
pub advisory_only: bool,
pub degraded: bool,
pub refuter_ready: bool,
pub stability_clear: bool,
pub theory_refuter_suite_id: TheoryRefuterSuiteId,
pub rollout_stability_report_id: RolloutStabilityReportId,
pub notes: Vec<String>,
pub generated_at: String,
}Fields§
§schema_version: String§fit_run_id: FitRunId§mechanism_bundle_id: MechanismBundleId§theory_version_id: TheoryVersionId§simulation_contract_id: SimulationContractId§fit_score: f64§disposition: FitDisposition§advisory_only: bool§degraded: bool§refuter_ready: bool§stability_clear: bool§theory_refuter_suite_id: TheoryRefuterSuiteId§rollout_stability_report_id: RolloutStabilityReportId§notes: Vec<String>§generated_at: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for FitRunV1
impl<'de> Deserialize<'de> for FitRunV1
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 FitRunV1
impl JsonSchema for FitRunV1
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 moreimpl StructuralPartialEq for FitRunV1
Auto Trait Implementations§
impl Freeze for FitRunV1
impl RefUnwindSafe for FitRunV1
impl Send for FitRunV1
impl Sync for FitRunV1
impl Unpin for FitRunV1
impl UnsafeUnpin for FitRunV1
impl UnwindSafe for FitRunV1
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