pub struct FileWatcherEvent {
pub paths: Vec<PathBuf>,
}Expand description
Coalesced file change notification for a subscriber.
Fields§
§paths: Vec<PathBuf>Changed paths delivered in sorted order with duplicates removed.
Trait Implementations§
Source§impl Clone for FileWatcherEvent
impl Clone for FileWatcherEvent
Source§fn clone(&self) -> FileWatcherEvent
fn clone(&self) -> FileWatcherEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FileWatcherEvent
impl Debug for FileWatcherEvent
impl Eq for FileWatcherEvent
Source§impl PartialEq for FileWatcherEvent
impl PartialEq for FileWatcherEvent
impl StructuralPartialEq for FileWatcherEvent
Auto Trait Implementations§
impl Freeze for FileWatcherEvent
impl RefUnwindSafe for FileWatcherEvent
impl Send for FileWatcherEvent
impl Sync for FileWatcherEvent
impl Unpin for FileWatcherEvent
impl UnsafeUnpin for FileWatcherEvent
impl UnwindSafe for FileWatcherEvent
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