pub struct ProblemCard {
pub card_id: i64,
pub note_id: i64,
pub lapses: i64,
pub reps: i64,
pub ease: i64,
pub interval: i64,
pub deck_name: String,
pub front: String,
pub reason: ProblemReason,
}Expand description
A card identified as problematic.
Fields§
§card_id: i64The card ID.
note_id: i64The note ID.
lapses: i64Number of lapses (times forgotten).
reps: i64Total number of reviews.
ease: i64Current ease factor (percentage * 10).
interval: i64Current interval in days.
deck_name: StringThe deck name.
front: StringFront field content (first field).
reason: ProblemReasonReason this card was flagged.
Trait Implementations§
Source§impl Clone for ProblemCard
impl Clone for ProblemCard
Source§fn clone(&self) -> ProblemCard
fn clone(&self) -> ProblemCard
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 ProblemCard
impl Debug for ProblemCard
Auto Trait Implementations§
impl Freeze for ProblemCard
impl RefUnwindSafe for ProblemCard
impl Send for ProblemCard
impl Sync for ProblemCard
impl Unpin for ProblemCard
impl UnwindSafe for ProblemCard
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