pub enum NotifyEvent {
SyscallHandled {
pid: u32,
syscall_nr: i32,
allowed: bool,
},
}Expand description
Events emitted by the supervisor for future user-facing notifications.
Variants§
SyscallHandled
A syscall was intercepted and handled.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NotifyEvent
impl RefUnwindSafe for NotifyEvent
impl Send for NotifyEvent
impl Sync for NotifyEvent
impl Unpin for NotifyEvent
impl UnsafeUnpin for NotifyEvent
impl UnwindSafe for NotifyEvent
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