pub struct CloneReport {
pub notes_cloned: usize,
pub notes_failed: usize,
pub destination: String,
}Expand description
Report of a deck clone operation.
Fields§
§notes_cloned: usizeNumber of notes cloned.
notes_failed: usizeNumber of notes that failed to clone.
destination: StringName of the destination deck.
Trait Implementations§
Source§impl Clone for CloneReport
impl Clone for CloneReport
Source§fn clone(&self) -> CloneReport
fn clone(&self) -> CloneReport
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 CloneReport
impl Debug for CloneReport
Source§impl Default for CloneReport
impl Default for CloneReport
Source§fn default() -> CloneReport
fn default() -> CloneReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CloneReport
impl RefUnwindSafe for CloneReport
impl Send for CloneReport
impl Sync for CloneReport
impl Unpin for CloneReport
impl UnwindSafe for CloneReport
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