pub enum ChangedContentVisitOutcome {
Visited(Box<ChangedContentVisitReport>),
FullRescanRequired,
}Expand description
Result of attempting a traversal-free watcher content visit.
Variants§
Visited(Box<ChangedContentVisitReport>)
Only changed file paths were matched, opened, and visited.
FullRescanRequired
The plan can affect directory structure or selection and therefore requires the caller to perform a complete scan.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChangedContentVisitOutcome
impl RefUnwindSafe for ChangedContentVisitOutcome
impl Send for ChangedContentVisitOutcome
impl Sync for ChangedContentVisitOutcome
impl Unpin for ChangedContentVisitOutcome
impl UnsafeUnpin for ChangedContentVisitOutcome
impl UnwindSafe for ChangedContentVisitOutcome
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