pub struct ResetReport {
pub cards_reset: usize,
pub deck: String,
}Expand description
Report from resetting deck progress.
Fields§
§cards_reset: usizeNumber of cards reset to new state.
deck: StringDeck that was reset.
Trait Implementations§
Source§impl Clone for ResetReport
impl Clone for ResetReport
Source§fn clone(&self) -> ResetReport
fn clone(&self) -> ResetReport
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 ResetReport
impl Debug for ResetReport
Source§impl Default for ResetReport
impl Default for ResetReport
Source§fn default() -> ResetReport
fn default() -> ResetReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResetReport
impl RefUnwindSafe for ResetReport
impl Send for ResetReport
impl Sync for ResetReport
impl Unpin for ResetReport
impl UnwindSafe for ResetReport
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