pub enum DuplicateMode {
Content,
Name,
Size,
}Expand description
Controls how duplicates are identified.
Variants§
Content
Hash-based: files with identical content (default).
Name
Name-based: files with the same filename (different directories).
Size
Size-based: files that share the same byte count (fast but imprecise).
Trait Implementations§
Source§impl Clone for DuplicateMode
impl Clone for DuplicateMode
Source§fn clone(&self) -> DuplicateMode
fn clone(&self) -> DuplicateMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DuplicateMode
Source§impl Debug for DuplicateMode
impl Debug for DuplicateMode
Source§impl Default for DuplicateMode
impl Default for DuplicateMode
Source§fn default() -> DuplicateMode
fn default() -> DuplicateMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DuplicateMode
impl<'de> Deserialize<'de> for DuplicateMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DuplicateMode
Source§impl PartialEq for DuplicateMode
impl PartialEq for DuplicateMode
Source§fn eq(&self, other: &DuplicateMode) -> bool
fn eq(&self, other: &DuplicateMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DuplicateMode
impl Serialize for DuplicateMode
impl StructuralPartialEq for DuplicateMode
Auto Trait Implementations§
impl Freeze for DuplicateMode
impl RefUnwindSafe for DuplicateMode
impl Send for DuplicateMode
impl Sync for DuplicateMode
impl Unpin for DuplicateMode
impl UnsafeUnpin for DuplicateMode
impl UnwindSafe for DuplicateMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more