pub struct Timings {
pub mean: Duration,
pub stddev: Duration,
}Expand description
The actual timings of a test, as measured by Hyperfine.
Fields§
§mean: DurationMean runtime for self.iter_total runs of this test.
stddev: DurationStandard deviation for the above.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Timings
impl<'de> Deserialize<'de> for Timings
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 Timings
impl RefUnwindSafe for Timings
impl Send for Timings
impl Sync for Timings
impl Unpin for Timings
impl UnwindSafe for Timings
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