pub struct ReorganizeReport {
pub moved: Vec<(String, String, usize)>,
}Expand description
Report of a reorganization operation.
Fields§
§moved: Vec<(String, String, usize)>List of (tag, destination deck, card count) for each reorganization.
Trait Implementations§
Source§impl Clone for ReorganizeReport
impl Clone for ReorganizeReport
Source§fn clone(&self) -> ReorganizeReport
fn clone(&self) -> ReorganizeReport
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 ReorganizeReport
impl Debug for ReorganizeReport
Source§impl Default for ReorganizeReport
impl Default for ReorganizeReport
Source§fn default() -> ReorganizeReport
fn default() -> ReorganizeReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReorganizeReport
impl RefUnwindSafe for ReorganizeReport
impl Send for ReorganizeReport
impl Sync for ReorganizeReport
impl Unpin for ReorganizeReport
impl UnwindSafe for ReorganizeReport
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