pub struct ExceptionRecord {
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],
}
Fields§
§exception_code: u32
§exception_flags: u32
§exception_record: u64
§exception_address: u64
§number_parameters: u32
§exception_information: [u64; 15]
Auto Trait Implementations§
impl Freeze for ExceptionRecord
impl RefUnwindSafe for ExceptionRecord
impl Send for ExceptionRecord
impl Sync for ExceptionRecord
impl Unpin for ExceptionRecord
impl UnwindSafe for ExceptionRecord
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