pub enum WatchType {
Child,
Data,
Exist,
}
Expand description
Describes what a Watch
is looking for.
Variants§
Child
Watching for changes to children.
Data
Watching for changes to data.
Exist
Watching for the creation of a node at the given path.
Trait Implementations§
impl StructuralPartialEq for WatchType
Auto Trait Implementations§
impl Freeze for WatchType
impl RefUnwindSafe for WatchType
impl Send for WatchType
impl Sync for WatchType
impl Unpin for WatchType
impl UnwindSafe for WatchType
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