pub enum PolledChangeKind {
Modified,
Deleted,
Created,
}Expand description
Classification of a change detected by FilesystemPoller.
Variants§
Modified
The file’s modification time advanced relative to the recorded value.
Deleted
The file is no longer accessible (deleted, moved, or permission lost).
Created
A previously expected (or previously deleted) file has appeared.
Trait Implementations§
Source§impl Clone for PolledChangeKind
impl Clone for PolledChangeKind
Source§fn clone(&self) -> PolledChangeKind
fn clone(&self) -> PolledChangeKind
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 PolledChangeKind
Source§impl Debug for PolledChangeKind
impl Debug for PolledChangeKind
impl Eq for PolledChangeKind
Source§impl PartialEq for PolledChangeKind
impl PartialEq for PolledChangeKind
impl StructuralPartialEq for PolledChangeKind
Auto Trait Implementations§
impl Freeze for PolledChangeKind
impl RefUnwindSafe for PolledChangeKind
impl Send for PolledChangeKind
impl Sync for PolledChangeKind
impl Unpin for PolledChangeKind
impl UnsafeUnpin for PolledChangeKind
impl UnwindSafe for PolledChangeKind
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.