pub enum CardState {
Due,
New,
Learning,
Review,
Suspended,
Buried,
BuriedSibling,
BuriedManual,
}
Expand description
Predefined card states for filtering
Variants§
Due
Cards that are due for review
New
New cards that haven’t been studied yet
Learning
Cards currently in the learning phase
Review
Cards in the review phase
Suspended
Cards that have been suspended
Buried
Cards that have been buried
BuriedSibling
Cards buried because a sibling was answered
BuriedManual
Cards buried manually by the user
Trait Implementations§
impl Copy for CardState
impl Eq for CardState
impl StructuralPartialEq for CardState
Auto Trait Implementations§
impl Freeze for CardState
impl RefUnwindSafe for CardState
impl Send for CardState
impl Sync for CardState
impl Unpin for CardState
impl UnwindSafe for CardState
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