pub enum Hint {
Dirty(PathBuf),
Rescan,
}Expand description
A hint from a native backend. Hints are unreliable and duplicated; the reconciler verifies everything against the filesystem before emitting.
Variants§
Dirty(PathBuf)
Something at or under this absolute path may have changed.
Rescan
Events may have been lost; re-verify the whole tree.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Hint
impl RefUnwindSafe for Hint
impl Send for Hint
impl Sync for Hint
impl Unpin for Hint
impl UnsafeUnpin for Hint
impl UnwindSafe for Hint
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