pub enum IdempotentKey {
None,
FileName,
FilePath,
FileSize,
Digest,
}Variants§
None
FileName
FilePath
FileSize
Digest
Lightweight fingerprint using file path + last-modified timestamp (not a cryptographic hash).
Trait Implementations§
Source§impl Clone for IdempotentKey
impl Clone for IdempotentKey
Source§fn clone(&self) -> IdempotentKey
fn clone(&self) -> IdempotentKey
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 IdempotentKey
Source§impl Debug for IdempotentKey
impl Debug for IdempotentKey
Source§impl Default for IdempotentKey
impl Default for IdempotentKey
Source§fn default() -> IdempotentKey
fn default() -> IdempotentKey
Returns the “default value” for a type. Read more
impl Eq for IdempotentKey
Source§impl FromStr for IdempotentKey
impl FromStr for IdempotentKey
Source§impl PartialEq for IdempotentKey
impl PartialEq for IdempotentKey
impl StructuralPartialEq for IdempotentKey
Auto Trait Implementations§
impl Freeze for IdempotentKey
impl RefUnwindSafe for IdempotentKey
impl Send for IdempotentKey
impl Sync for IdempotentKey
impl Unpin for IdempotentKey
impl UnsafeUnpin for IdempotentKey
impl UnwindSafe for IdempotentKey
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