pub struct CardReviewHistory {
pub card_id: i64,
pub reviews: Vec<ExportedReviewEntry>,
}Expand description
Review history for a single card.
Fields§
§card_id: i64The card ID.
reviews: Vec<ExportedReviewEntry>Review entries in chronological order.
Trait Implementations§
Source§impl Clone for CardReviewHistory
impl Clone for CardReviewHistory
Source§fn clone(&self) -> CardReviewHistory
fn clone(&self) -> CardReviewHistory
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 CardReviewHistory
impl Debug for CardReviewHistory
Auto Trait Implementations§
impl Freeze for CardReviewHistory
impl RefUnwindSafe for CardReviewHistory
impl Send for CardReviewHistory
impl Sync for CardReviewHistory
impl Unpin for CardReviewHistory
impl UnwindSafe for CardReviewHistory
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