pub struct GroupStats {
pub dirs_created: usize,
pub files_moved: usize,
pub files_renamed: usize,
}Expand description
Statistics from a grouping operation
Fields§
§dirs_created: usizeNumber of directories created
files_moved: usizeNumber of files moved
files_renamed: usizeNumber of files renamed (prefix stripped)
Trait Implementations§
Source§impl Clone for GroupStats
impl Clone for GroupStats
Source§fn clone(&self) -> GroupStats
fn clone(&self) -> GroupStats
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 GroupStats
impl Debug for GroupStats
Source§impl Default for GroupStats
impl Default for GroupStats
Source§fn default() -> GroupStats
fn default() -> GroupStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GroupStats
impl RefUnwindSafe for GroupStats
impl Send for GroupStats
impl Sync for GroupStats
impl Unpin for GroupStats
impl UnsafeUnpin for GroupStats
impl UnwindSafe for GroupStats
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