pub struct RenameStats {
pub entries_renamed: usize,
pub renames: Vec<(String, String)>,
}Expand description
Statistics from a rename duplicates operation.
Fields§
§entries_renamed: usizeNumber of entries renamed.
renames: Vec<(String, String)>Mapping of old paths to new paths.
Trait Implementations§
Source§impl Clone for RenameStats
impl Clone for RenameStats
Source§fn clone(&self) -> RenameStats
fn clone(&self) -> RenameStats
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 RenameStats
impl Debug for RenameStats
Source§impl Default for RenameStats
impl Default for RenameStats
Source§fn default() -> RenameStats
fn default() -> RenameStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RenameStats
impl RefUnwindSafe for RenameStats
impl Send for RenameStats
impl Sync for RenameStats
impl Unpin for RenameStats
impl UnwindSafe for RenameStats
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