pub enum UserReview {
TooHard,
JustEnough,
TooEasy,
}
Expand description
User evaluation of review event. Did it feel too hard, just difficult enough or too easy?
Variants§
TooHard
The forgetting curve decreases faster than expected, increase difficulty of item
JustEnough
The forgetting curve decreases just enough,
TooEasy
The forgetting curve decreases slower than expected, decrease difficulty of item
Trait Implementations§
Source§impl Clone for UserReview
impl Clone for UserReview
Source§fn clone(&self) -> UserReview
fn clone(&self) -> UserReview
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 moreAuto Trait Implementations§
impl Freeze for UserReview
impl RefUnwindSafe for UserReview
impl Send for UserReview
impl Sync for UserReview
impl Unpin for UserReview
impl UnwindSafe for UserReview
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