pub struct SimulationConfig {
pub num_lambda: usize,
pub lambda_min: f64,
pub lambda_max: f64,
pub steps_per_run: usize,
pub multi_steps_per_run: Vec<usize>,
pub random_seed: u64,
pub enable_aet: bool,
pub enable_tcp: bool,
pub enable_rlt: bool,
pub enable_iwlt: bool,
}Fields§
§num_lambda: usize§lambda_min: f64§lambda_max: f64§steps_per_run: usize§multi_steps_per_run: Vec<usize>§random_seed: u64§enable_aet: bool§enable_tcp: bool§enable_rlt: bool§enable_iwlt: boolImplementations§
Trait Implementations§
Source§impl Clone for SimulationConfig
impl Clone for SimulationConfig
Source§fn clone(&self) -> SimulationConfig
fn clone(&self) -> SimulationConfig
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 SimulationConfig
impl Debug for SimulationConfig
Source§impl Default for SimulationConfig
impl Default for SimulationConfig
Source§impl<'de> Deserialize<'de> for SimulationConfigwhere
SimulationConfig: Default,
impl<'de> Deserialize<'de> for SimulationConfigwhere
SimulationConfig: Default,
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 SimulationConfig
impl RefUnwindSafe for SimulationConfig
impl Send for SimulationConfig
impl Sync for SimulationConfig
impl Unpin for SimulationConfig
impl UnsafeUnpin for SimulationConfig
impl UnwindSafe for SimulationConfig
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