pub struct TagReport {
pub struggling_count: usize,
pub mastered_count: usize,
pub struggling_tag: String,
pub mastered_tag: String,
}Expand description
Report from tagging cards by performance.
Fields§
§struggling_count: usizeNumber of notes tagged as struggling.
mastered_count: usizeNumber of notes tagged as mastered.
struggling_tag: StringTag used for struggling cards.
mastered_tag: StringTag used for mastered cards.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TagReport
impl RefUnwindSafe for TagReport
impl Send for TagReport
impl Sync for TagReport
impl Unpin for TagReport
impl UnwindSafe for TagReport
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