pub enum ProblemReason {
HighLapseCount(i64),
LowEase(i64),
PoorRetention {
reps: i64,
interval: i64,
},
}Expand description
Reason a card was flagged as problematic.
Variants§
HighLapseCount(i64)
Card has been forgotten many times.
LowEase(i64)
Card has very low ease factor.
PoorRetention
Card has been reviewed many times but still has short interval.
Trait Implementations§
Source§impl Clone for ProblemReason
impl Clone for ProblemReason
Source§fn clone(&self) -> ProblemReason
fn clone(&self) -> ProblemReason
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 ProblemReason
impl Debug for ProblemReason
Auto Trait Implementations§
impl Freeze for ProblemReason
impl RefUnwindSafe for ProblemReason
impl Send for ProblemReason
impl Sync for ProblemReason
impl Unpin for ProblemReason
impl UnwindSafe for ProblemReason
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