pub struct WatcherEvent {
pub kind: WatcherEventKind,
pub ids: Vec<u32>,
}Expand description
One event from ToolWatcher::feed.
Fields§
§kind: WatcherEventKind§ids: Vec<u32>Trait Implementations§
Source§impl Clone for WatcherEvent
impl Clone for WatcherEvent
Source§fn clone(&self) -> WatcherEvent
fn clone(&self) -> WatcherEvent
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 WatcherEvent
impl Debug for WatcherEvent
Source§impl PartialEq for WatcherEvent
impl PartialEq for WatcherEvent
Source§fn eq(&self, other: &WatcherEvent) -> bool
fn eq(&self, other: &WatcherEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for WatcherEvent
impl StructuralPartialEq for WatcherEvent
Auto Trait Implementations§
impl Freeze for WatcherEvent
impl RefUnwindSafe for WatcherEvent
impl Send for WatcherEvent
impl Sync for WatcherEvent
impl Unpin for WatcherEvent
impl UnsafeUnpin for WatcherEvent
impl UnwindSafe for WatcherEvent
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