#[repr(C)]pub struct HandlerType {
pub adjectives: u32,
pub ty: Ptr<TypeDescriptor>,
pub disp_catch_obj: i32,
pub address_of_handler: Ptr,
}Expand description
Catch block descriptor.
Describes a single catch of a try block.
Fields§
§adjectives: u320x01: const0x02: volatile0x08: reference
ty: Ptr<TypeDescriptor>RTTI descriptor of the exception type. 0 = any (ellipsis).
disp_catch_obj: i32EBP-based offset of the exception object in the function stack. 0 = no object (catch by type).
address_of_handler: PtrAddress of the catch handler Code.
Returns address where to continues execution (i.e. code after the try block).
Trait Implementations§
Source§impl Clone for HandlerType
impl Clone for HandlerType
Source§fn clone(&self) -> HandlerType
fn clone(&self) -> HandlerType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HandlerType
impl Debug for HandlerType
impl Copy for HandlerType
impl Pod for HandlerType
Auto Trait Implementations§
impl Freeze for HandlerType
impl RefUnwindSafe for HandlerType
impl Send for HandlerType
impl Sync for HandlerType
impl Unpin for HandlerType
impl UnwindSafe for HandlerType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> PodMethods for T
impl<T> PodMethods for T
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Returns the object’s memory as a mutable byte slice.
Source§fn as_data_view(&self) -> &DataView
fn as_data_view(&self) -> &DataView
Returns a data view into the object’s memory.
Source§fn as_data_view_mut(&mut self) -> &mut DataView
fn as_data_view_mut(&mut self) -> &mut DataView
Returns a mutable data view into the object’s memory.