Struct watchexec_events::Event
source · pub struct Event {
pub tags: Vec<Tag>,
pub metadata: HashMap<String, Vec<String>>,
}Expand description
An event, as far as watchexec cares about.
Fields§
Structured, classified information which can be used to filter or classify the event.
metadata: HashMap<String, Vec<String>>Arbitrary other information, cannot be used for filtering.
Implementations§
source§impl Event
impl Event
sourcepub fn is_internal(&self) -> bool
pub fn is_internal(&self) -> bool
Returns true if the event has an Internal source tag.
sourcepub fn paths(&self) -> impl Iterator<Item = (&Path, Option<&FileType>)>
pub fn paths(&self) -> impl Iterator<Item = (&Path, Option<&FileType>)>
Return all paths in the event’s tags.
sourcepub fn signals(&self) -> impl Iterator<Item = Signal> + '_
pub fn signals(&self) -> impl Iterator<Item = Signal> + '_
Return all signals in the event’s tags.
sourcepub fn completions(&self) -> impl Iterator<Item = Option<ProcessEnd>> + '_
pub fn completions(&self) -> impl Iterator<Item = Option<ProcessEnd>> + '_
Return all process completions in the event’s tags.
Trait Implementations§
source§impl PartialEq for Event
impl PartialEq for Event
impl Eq for Event
impl StructuralPartialEq for Event
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
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