pub struct Anotify {
pub mask: WatchMask,
pub regex: Option<String>,
pub recursive: bool,
pub targets: Vec<OsString>,
}
Expand description
Anotify todo
Fields§
§mask: WatchMask
inotify::WatchMask, the event mask to watched
regex: Option<String>
the regex to fliter file name
recursive: bool
does it watch sub dir
targets: Vec<OsString>
all pathes to be watched
Auto Trait Implementations§
impl Freeze for Anotify
impl RefUnwindSafe for Anotify
impl Send for Anotify
impl Sync for Anotify
impl Unpin for Anotify
impl UnwindSafe for Anotify
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