Enum watchexec_events::Priority
source · pub enum Priority {
Low,
Normal,
High,
Urgent,
}Expand description
The priority of the event in the queue.
In the event queue, events are inserted with a priority, such that more important events are delivered ahead of others. This is especially important when there is a large amount of events generated and relatively slow filtering, as events can become noticeably delayed, and may give the impression of stalling.
Variants§
Low
Low priority
Used for:
- process completion events
Normal
Normal priority
Used for:
- filesystem events
High
High priority
Used for:
- signals to main process, except Interrupt and Terminate
Urgent
Urgent events bypass filtering entirely.
Used for:
- Interrupt and Terminate signals to main process
Trait Implementations§
source§impl Ord for Priority
impl Ord for Priority
source§impl PartialEq for Priority
impl PartialEq for Priority
source§impl PartialOrd for Priority
impl PartialOrd for Priority
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for Priority
impl Eq for Priority
impl StructuralPartialEq for Priority
Auto Trait Implementations§
impl Freeze for Priority
impl RefUnwindSafe for Priority
impl Send for Priority
impl Sync for Priority
impl Unpin for Priority
impl UnwindSafe for Priority
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