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

#[repr(C)]
pub struct CatchableType {
    pub properties: u32,
    pub type_descriptor: Ptr<TypeDescriptor>,
    pub pmd: PMD,
    pub size_or_offset: i32,
    pub copy_function: Ptr,
}

Describes a type that can catch this exception.

Fields

properties: u32
  • 0x01: simple type (can be copied by memmove)
  • 0x02: can be caught by reference only
  • 0x04: has virtual bases
type_descriptor: Ptr<TypeDescriptor>

Pointer to its type descriptor.

pmd: PMD

How to cast the thrown object to this type.

size_or_offset: i32

Object size.

copy_function: Ptr

Copy constructor address.

Trait Implementations

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

impl Clone for CatchableType[src]

impl Copy for CatchableType[src]

impl Debug for CatchableType[src]

impl Serialize for CatchableType[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]