pub struct CategoryScore {
pub category: Category,
pub correct: u32,
pub total: u32,
}Expand description
Score for a specific category.
Fields§
§category: Category§correct: u32§total: u32Trait Implementations§
Source§impl Clone for CategoryScore
impl Clone for CategoryScore
Source§fn clone(&self) -> CategoryScore
fn clone(&self) -> CategoryScore
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 CategoryScore
impl Debug for CategoryScore
Source§impl<'de> Deserialize<'de> for CategoryScore
impl<'de> Deserialize<'de> for CategoryScore
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 CategoryScore
impl RefUnwindSafe for CategoryScore
impl Send for CategoryScore
impl Sync for CategoryScore
impl Unpin for CategoryScore
impl UnsafeUnpin for CategoryScore
impl UnwindSafe for CategoryScore
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