pub struct FileNotifyEvent {
pub action: FileNotifyAction,
pub filename: String,
}Expand description
A single file change notification.
Represents one FILE_NOTIFY_INFORMATION entry from the server.
Fields§
§action: FileNotifyActionWhat kind of change occurred.
filename: StringThe relative file name within the watched directory.
Trait Implementations§
Source§impl Clone for FileNotifyEvent
impl Clone for FileNotifyEvent
Source§fn clone(&self) -> FileNotifyEvent
fn clone(&self) -> FileNotifyEvent
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 moreAuto Trait Implementations§
impl Freeze for FileNotifyEvent
impl RefUnwindSafe for FileNotifyEvent
impl Send for FileNotifyEvent
impl Sync for FileNotifyEvent
impl Unpin for FileNotifyEvent
impl UnsafeUnpin for FileNotifyEvent
impl UnwindSafe for FileNotifyEvent
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