Struct gdb_command::siginfo::Siginfo
source · pub struct Siginfo {
pub si_signo: u32,
pub si_errno: u32,
pub si_code: u32,
pub si_addr: u64,
}
Expand description
Definition from siginfo.h (not all fields are defined).
Fields§
§si_signo: u32
Signal number.
si_errno: u32
§si_code: u32
§si_addr: u64
Address due to access to which an exception was occurred.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Siginfo
impl Send for Siginfo
impl Sync for Siginfo
impl Unpin for Siginfo
impl UnwindSafe for Siginfo
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