pub enum Call {
Generic(GenericCall),
Unfinished(String),
Resumed(String),
Exited(u32),
Signalled(String),
}
Expand description
The syscall or action that happened.
Variants§
Generic(GenericCall)
A generic unmodelled syscall was made
Unfinished(String)
An incomplete call
Resumed(String)
A resumed call
Exited(u32)
The process exited
Signalled(String)
The process was signalled
Trait Implementations§
impl Eq for Call
impl StructuralPartialEq for Call
Auto Trait Implementations§
impl Freeze for Call
impl RefUnwindSafe for Call
impl Send for Call
impl Sync for Call
impl Unpin for Call
impl UnwindSafe for Call
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