pub enum LearningState {
Provisional,
Confirmed,
Lapsed,
Rejected,
}Expand description
Where a learning is in its life. provisional applies now and will lapse unless
rediscovered; confirmed has been rediscovered enough times to be treated as real;
lapsed is remembered only so a later rediscovery can be recognised as one; rejected
was refused by a human and never counts again.
Variants§
Trait Implementations§
Source§impl Clone for LearningState
impl Clone for LearningState
impl Copy for LearningState
Source§impl Debug for LearningState
impl Debug for LearningState
Source§impl<'de> Deserialize<'de> for LearningState
impl<'de> Deserialize<'de> for LearningState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for LearningState
Source§impl PartialEq for LearningState
impl PartialEq for LearningState
Source§impl Serialize for LearningState
impl Serialize for LearningState
impl StructuralPartialEq for LearningState
Auto Trait Implementations§
impl Freeze for LearningState
impl RefUnwindSafe for LearningState
impl Send for LearningState
impl Sync for LearningState
impl Unpin for LearningState
impl UnsafeUnpin for LearningState
impl UnwindSafe for LearningState
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