pub struct ScenarioMetadata {
pub name: String,
pub entry: String,
pub target: String,
pub iterations_count: usize,
pub warmup_count: usize,
}Fields§
§name: String§entry: String§target: String§iterations_count: usize§warmup_count: usizeTrait Implementations§
Source§impl Clone for ScenarioMetadata
impl Clone for ScenarioMetadata
Source§fn clone(&self) -> ScenarioMetadata
fn clone(&self) -> ScenarioMetadata
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 ScenarioMetadata
impl Debug for ScenarioMetadata
Source§impl<'de> Deserialize<'de> for ScenarioMetadata
impl<'de> Deserialize<'de> for ScenarioMetadata
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 ScenarioMetadata
impl RefUnwindSafe for ScenarioMetadata
impl Send for ScenarioMetadata
impl Sync for ScenarioMetadata
impl Unpin for ScenarioMetadata
impl UnsafeUnpin for ScenarioMetadata
impl UnwindSafe for ScenarioMetadata
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