pub struct PerformanceCriteria {
pub struggling_ease: i64,
pub struggling_lapses: i64,
pub mastered_ease: i64,
pub mastered_min_reps: i64,
}Expand description
Criteria for categorizing card performance.
Fields§
§struggling_ease: i64Ease factor threshold for struggling (below this is struggling).
struggling_lapses: i64Lapse count threshold for struggling (above this is struggling).
mastered_ease: i64Ease factor threshold for mastered (above this is mastered).
mastered_min_reps: i64Minimum reps required for mastered status.
Trait Implementations§
Source§impl Clone for PerformanceCriteria
impl Clone for PerformanceCriteria
Source§fn clone(&self) -> PerformanceCriteria
fn clone(&self) -> PerformanceCriteria
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 PerformanceCriteria
impl Debug for PerformanceCriteria
Auto Trait Implementations§
impl Freeze for PerformanceCriteria
impl RefUnwindSafe for PerformanceCriteria
impl Send for PerformanceCriteria
impl Sync for PerformanceCriteria
impl Unpin for PerformanceCriteria
impl UnwindSafe for PerformanceCriteria
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