pub enum RepetitionResult {
Again,
Hard,
Normal,
Easy,
}Expand description
The result of a repetition as specified by the user.
Variants§
Again
The user was not able to repeat the item.
Hard
The user was able to repeat the item, but found it especially hard.
Normal
The user was able to repeat the item, with average difficulty.
Easy
The user was able to repeat the item, and found it especially easy.
Trait Implementations§
Source§impl Clone for RepetitionResult
impl Clone for RepetitionResult
Source§fn clone(&self) -> RepetitionResult
fn clone(&self) -> RepetitionResult
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 RepetitionResult
impl Debug for RepetitionResult
Source§impl PartialEq for RepetitionResult
impl PartialEq for RepetitionResult
impl Copy for RepetitionResult
impl Eq for RepetitionResult
impl StructuralPartialEq for RepetitionResult
Auto Trait Implementations§
impl Freeze for RepetitionResult
impl RefUnwindSafe for RepetitionResult
impl Send for RepetitionResult
impl Sync for RepetitionResult
impl Unpin for RepetitionResult
impl UnwindSafe for RepetitionResult
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