pub struct Options {
pub pid: u32,
pub tid: u32,
pub sig: u32,
pub comm: String,
pub verbose: bool,
pub no_redirect: bool,
pub no_kmsg: bool,
pub timeout: Duration,
}
Expand description
underhill crash environment settings and command-line parameters. The order of command-line arguments is expected to be: {pid} {tid} {signal} {command line}
Fields§
§pid: u32
PID of the process
tid: u32
TID of the faulted thread
sig: u32
Signal
comm: String
Command line the process was started with
verbose: bool
Be verbose
no_redirect: bool
Don’t redirect output
no_kmsg: bool
Don’t include KMSG
timeout: Duration
Timeout
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
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