pub struct RoundStatsDiff {
pub duration: f32,
pub rmr: f32,
pub ldh: f32,
pub missed: f32,
}
Available on crate feature
test-utils
only.Expand description
Difference (as factors) between two RoundStats
.
Fields§
§duration: f32
The difference in RoundStats::duration
, as a factor.
rmr: f32
The difference in RoundStats::rmr
, as a factor.
ldh: f32
The difference in RoundStats::ldh
, as a factor.
missed: f32
The difference in RoundStats::missed
, as a factor.
Trait Implementations§
Source§impl Clone for RoundStatsDiff
impl Clone for RoundStatsDiff
Source§fn clone(&self) -> RoundStatsDiff
fn clone(&self) -> RoundStatsDiff
Returns a copy 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 RoundStatsDiff
impl Debug for RoundStatsDiff
Source§impl Default for RoundStatsDiff
impl Default for RoundStatsDiff
Source§fn default() -> RoundStatsDiff
fn default() -> RoundStatsDiff
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoundStatsDiff
impl<'de> Deserialize<'de> for RoundStatsDiff
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 RoundStatsDiff
impl RefUnwindSafe for RoundStatsDiff
impl Send for RoundStatsDiff
impl Sync for RoundStatsDiff
impl Unpin for RoundStatsDiff
impl UnwindSafe for RoundStatsDiff
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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