pub struct DogfoodDifficultyStat {
pub total: usize,
pub passed: usize,
pub mean_score: f64,
}Expand description
Per-difficulty dogfood roll-up.
Fields§
§total: usize§passed: usize§mean_score: f64Trait Implementations§
Source§impl Clone for DogfoodDifficultyStat
impl Clone for DogfoodDifficultyStat
Source§fn clone(&self) -> DogfoodDifficultyStat
fn clone(&self) -> DogfoodDifficultyStat
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 DogfoodDifficultyStat
impl Debug for DogfoodDifficultyStat
Source§impl Default for DogfoodDifficultyStat
impl Default for DogfoodDifficultyStat
Source§fn default() -> DogfoodDifficultyStat
fn default() -> DogfoodDifficultyStat
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DogfoodDifficultyStat
impl RefUnwindSafe for DogfoodDifficultyStat
impl Send for DogfoodDifficultyStat
impl Sync for DogfoodDifficultyStat
impl Unpin for DogfoodDifficultyStat
impl UnsafeUnpin for DogfoodDifficultyStat
impl UnwindSafe for DogfoodDifficultyStat
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