pub struct EventMask(pub u32);Expand description
Bitmask of process event types for use with
subscribe_filtered.
§Example
use proc_connector::EventMask;
let mask = EventMask::EXEC | EventMask::EXIT;Tuple Fields§
§0: u32Implementations§
Trait Implementations§
impl Copy for EventMask
impl Eq for EventMask
impl StructuralPartialEq for EventMask
Auto Trait Implementations§
impl Freeze for EventMask
impl RefUnwindSafe for EventMask
impl Send for EventMask
impl Sync for EventMask
impl Unpin for EventMask
impl UnsafeUnpin for EventMask
impl UnwindSafe for EventMask
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