pub struct ExportedReviewEntry {
pub timestamp: i64,
pub ease: i32,
pub interval: i64,
pub last_interval: i64,
pub time_ms: i64,
}Expand description
A single review entry.
Fields§
§timestamp: i64Review timestamp (milliseconds since epoch).
ease: i32Ease button pressed (1-4).
interval: i64Resulting interval.
last_interval: i64Previous interval.
time_ms: i64Time spent on review in milliseconds.
Trait Implementations§
Source§impl Clone for ExportedReviewEntry
impl Clone for ExportedReviewEntry
Source§fn clone(&self) -> ExportedReviewEntry
fn clone(&self) -> ExportedReviewEntry
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 ExportedReviewEntry
impl Debug for ExportedReviewEntry
Auto Trait Implementations§
impl Freeze for ExportedReviewEntry
impl RefUnwindSafe for ExportedReviewEntry
impl Send for ExportedReviewEntry
impl Sync for ExportedReviewEntry
impl Unpin for ExportedReviewEntry
impl UnwindSafe for ExportedReviewEntry
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