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

#[repr(C)]
pub struct TryBlockMapEntry { pub try_low: i32, pub try_high: i32, pub catch_high: i32, pub catches: i32, pub handler_array: Ptr<[HandlerType]>, }

Try block descriptor.

Describes a try block with associated catches.

Fields

This try {} covers states ranging from try_low to try_high.

Highest state inside catch handlers of this try.

Number of catch handlers.

Catch handlers table.

Trait Implementations

impl Copy for TryBlockMapEntry
[src]

impl Clone for TryBlockMapEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TryBlockMapEntry
[src]

Formats the value using the given formatter. Read more

impl Pod for TryBlockMapEntry
[src]

Auto Trait Implementations