pub struct YamlExperiment {
pub id: String,
pub seed: u64,
pub emc_ref: String,
pub simulation: SimulationConfig,
pub falsification: FalsificationConfig,
}Expand description
EDD v2 Experiment loaded from YAML only
Fields§
§id: StringUnique experiment identifier
seed: u64Random seed (MANDATORY)
emc_ref: StringReference to EMC (MANDATORY)
simulation: SimulationConfigSimulation configuration
falsification: FalsificationConfigFalsification criteria (MANDATORY)
Trait Implementations§
Source§impl Clone for YamlExperiment
impl Clone for YamlExperiment
Source§fn clone(&self) -> YamlExperiment
fn clone(&self) -> YamlExperiment
Returns a duplicate of the value. Read more
1.0.0 · 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 YamlExperiment
impl Debug for YamlExperiment
Source§impl<'de> Deserialize<'de> for YamlExperiment
impl<'de> Deserialize<'de> for YamlExperiment
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 YamlExperiment
impl RefUnwindSafe for YamlExperiment
impl Send for YamlExperiment
impl Sync for YamlExperiment
impl Unpin for YamlExperiment
impl UnsafeUnpin for YamlExperiment
impl UnwindSafe for YamlExperiment
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