pub struct Stats {
pub count: f32,
pub duration_avg: f32,
pub duration_max: f32,
pub duration_min: f32,
pub score_avg: f32,
pub score_max: f32,
pub score_min: f32,
}
Fields§
§count: f32
§duration_avg: f32
§duration_max: f32
§duration_min: f32
§score_avg: f32
§score_max: f32
§score_min: f32
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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