[][src]Struct pelite::pe32::msvc::HandlerType

#[repr(C)]
pub struct HandlerType {
    pub adjectives: u32,
    pub ty: Ptr<TypeDescriptor>,
    pub disp_catch_obj: i32,
    pub address_of_handler: Ptr,
}

Catch block descriptor.

Describes a single catch of a try block.

Fields

adjectives: u32
  • 0x01: const
  • 0x02: volatile
  • 0x08: reference
ty: Ptr<TypeDescriptor>

RTTI descriptor of the exception type. 0 = any (ellipsis).

disp_catch_obj: i32

EBP-based offset of the exception object in the function stack. 0 = no object (catch by type).

address_of_handler: Ptr

Address of the catch handler Code.

Returns address where to continues execution (i.e. code after the try block).

Trait Implementations

impl Pod for HandlerType where
    Self: 'static,
    u32: Pod,
    Ptr<TypeDescriptor>: Pod,
    i32: Pod,
    Ptr: Pod
[src]

impl Clone for HandlerType[src]

impl Copy for HandlerType[src]

impl Debug for HandlerType[src]

impl Serialize for HandlerType[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]