pub struct WatcherHandle(/* private fields */);Expand description
Represents an active file or directory watcher in WATCHER.
Implementations§
Source§impl WatcherHandle
impl WatcherHandle
Sourcepub fn is_permanent(&self) -> bool
pub fn is_permanent(&self) -> bool
If perm was called in another clone of this handle.
If true the resource will stay in memory for the duration of the app, unless force_drop
is also called.
Sourcepub fn force_drop(self)
pub fn force_drop(self)
Force drops the watcher, meaning it will be dropped even if there are other handles active.
Sourcepub fn is_dropped(&self) -> bool
pub fn is_dropped(&self) -> bool
If the watcher is dropped.
Trait Implementations§
Source§impl Clone for WatcherHandle
impl Clone for WatcherHandle
Source§fn clone(&self) -> WatcherHandle
fn clone(&self) -> WatcherHandle
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for WatcherHandle
impl RefUnwindSafe for WatcherHandle
impl Send for WatcherHandle
impl Sync for WatcherHandle
impl Unpin for WatcherHandle
impl UnwindSafe for WatcherHandle
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> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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