pub struct MechanismBundleV1 {
pub mechanism_id: String,
pub name: String,
pub description: String,
pub fit_score: f64,
pub refuter_suite: Option<RefuterSuiteV1>,
pub status: MechanismStatus,
pub version: u32,
pub superseded_by: Option<String>,
pub timestamp: String,
}Expand description
A candidate mechanism/theory artifact.
Fields§
§mechanism_id: String§name: String§description: String§fit_score: f64§refuter_suite: Option<RefuterSuiteV1>§status: MechanismStatus§version: u32§superseded_by: Option<String>§timestamp: StringTrait Implementations§
Source§impl Clone for MechanismBundleV1
impl Clone for MechanismBundleV1
Source§fn clone(&self) -> MechanismBundleV1
fn clone(&self) -> MechanismBundleV1
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 MechanismBundleV1
impl Debug for MechanismBundleV1
Source§impl<'de> Deserialize<'de> for MechanismBundleV1
impl<'de> Deserialize<'de> for MechanismBundleV1
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
Auto Trait Implementations§
impl Freeze for MechanismBundleV1
impl RefUnwindSafe for MechanismBundleV1
impl Send for MechanismBundleV1
impl Sync for MechanismBundleV1
impl Unpin for MechanismBundleV1
impl UnsafeUnpin for MechanismBundleV1
impl UnwindSafe for MechanismBundleV1
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