pub struct FullJudgements {
pub marvelouses: u32,
pub perfects: u32,
pub greats: u32,
pub goods: u32,
pub bads: u32,
pub misses: u32,
pub hit_mines: u32,
pub held_holds: u32,
pub let_go_holds: u32,
pub missed_holds: u32,
}Expand description
Judgement data, including mines and holds
Fields§
§marvelouses: u32§perfects: u32§greats: u32§goods: u32§bads: u32§misses: u32§hit_mines: u32§held_holds: u32§let_go_holds: u32§missed_holds: u32Trait Implementations§
Source§impl Clone for FullJudgements
impl Clone for FullJudgements
Source§fn clone(&self) -> FullJudgements
fn clone(&self) -> FullJudgements
Returns a duplicate 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 FullJudgements
impl Debug for FullJudgements
Source§impl Default for FullJudgements
impl Default for FullJudgements
Source§fn default() -> FullJudgements
fn default() -> FullJudgements
Returns the “default value” for a type. Read more
Source§impl From<FullJudgements> for TapJudgements
impl From<FullJudgements> for TapJudgements
Source§fn from(judgements: FullJudgements) -> Self
fn from(judgements: FullJudgements) -> Self
Converts to this type from the input type.
Source§impl Hash for FullJudgements
impl Hash for FullJudgements
Source§impl PartialEq for FullJudgements
impl PartialEq for FullJudgements
impl Eq for FullJudgements
impl StructuralPartialEq for FullJudgements
Auto Trait Implementations§
impl Freeze for FullJudgements
impl RefUnwindSafe for FullJudgements
impl Send for FullJudgements
impl Sync for FullJudgements
impl Unpin for FullJudgements
impl UnwindSafe for FullJudgements
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