pub struct DurationYaml {
pub warmup: f64,
pub simulation: f64,
pub replications: u32,
}Expand description
Duration settings.
Fields§
§warmup: f64§simulation: f64§replications: u32Trait Implementations§
Source§impl Clone for DurationYaml
impl Clone for DurationYaml
Source§fn clone(&self) -> DurationYaml
fn clone(&self) -> DurationYaml
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 DurationYaml
impl Debug for DurationYaml
Source§impl<'de> Deserialize<'de> for DurationYaml
impl<'de> Deserialize<'de> for DurationYaml
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 DurationYaml
impl RefUnwindSafe for DurationYaml
impl Send for DurationYaml
impl Sync for DurationYaml
impl Unpin for DurationYaml
impl UnsafeUnpin for DurationYaml
impl UnwindSafe for DurationYaml
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