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

#[repr(C)]
pub struct ThrowInfo {
    pub attributes: u32,
    pub unwind: Ptr,
    pub forward_compat: Ptr,
    pub catchable_type_array: Ptr<CatchableTypeArray>,
}

Fields

attributes: u32
  • 0x01: const
  • 0x02: volatile
unwind: Ptr

Exception destructor.

Pointer to function with signature fn().

forward_compat: Ptr

Forward compatibility handler.

Pointer to function with signature fn() -> i32.

catchable_type_array: Ptr<CatchableTypeArray>

List of types that can catch this exception; i.e. the actual type and all its ancestors.

Trait Implementations

impl Pod for ThrowInfo where
    Self: 'static,
    u32: Pod,
    Ptr: Pod,
    Ptr: Pod,
    Ptr<CatchableTypeArray>: Pod
[src]

impl Clone for ThrowInfo[src]

impl Copy for ThrowInfo[src]

impl Debug for ThrowInfo[src]

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