[][src]Struct symbolic_debuginfo::pe::RuntimeFunction

#[repr(C)]
pub struct RuntimeFunction {
    pub begin_address: u32,
    pub end_address: u32,
    pub unwind_info_address: u32,
}

An unwind entry for a range of a function.

Unwind information for this function can be loaded with ExceptionData::get_unwind_info.

Fields

begin_address: u32

Function start address.

end_address: u32

Function end address.

unwind_info_address: u32

Unwind info address.

Trait Implementations

impl Debug for RuntimeFunction[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for RuntimeFunction where
    RuntimeFunction: 'a, 
[src]

type Error = Error<usize>

type Size = usize

impl Clone for RuntimeFunction[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for RuntimeFunction[src]

impl Copy for RuntimeFunction[src]

impl<'a> TryIntoCtx<Endian, [u8]> for &'a RuntimeFunction[src]

type Error = Error<usize>

type Size = usize

impl TryIntoCtx<Endian, [u8]> for RuntimeFunction[src]

type Error = Error<usize>

type Size = usize

impl PartialEq<RuntimeFunction> for RuntimeFunction[src]

Auto Trait Implementations

Blanket Implementations

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

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, 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]