pub struct ExceptionRecord64 {
pub exception_code: u32,
pub exception_flags: u32,
pub exception_record: u64,
pub exception_address: u64,
pub number_parameters: u32,
pub exception_information: [u64; 15],
/* private fields */
}Fields§
§exception_code: u32§exception_flags: u32§exception_record: u64§exception_address: u64§number_parameters: u32§exception_information: [u64; 15]Trait Implementations§
Source§impl Debug for ExceptionRecord64
impl Debug for ExceptionRecord64
Source§impl Default for ExceptionRecord64
impl Default for ExceptionRecord64
Source§fn default() -> ExceptionRecord64
fn default() -> ExceptionRecord64
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExceptionRecord64
impl RefUnwindSafe for ExceptionRecord64
impl Send for ExceptionRecord64
impl Sync for ExceptionRecord64
impl Unpin for ExceptionRecord64
impl UnwindSafe for ExceptionRecord64
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