[][src]Struct goblin::pe::symbol::AuxFunctionDefinition

#[repr(C)]
pub struct AuxFunctionDefinition {
    pub tag_index: u32,
    pub total_size: u32,
    pub pointer_to_line_number: u32,
    pub pointer_to_next_function: u32,
    pub unused: [u8; 2],
}

Auxiliary symbol record for function definitions.

Fields

tag_index: u32

The symbol-table index of the corresponding .bf (begin function) symbol record.

total_size: u32

The size of the executable code for the function itself.

If the function is in its own section, the size_of_raw_data in the section header is greater or equal to this field, depending on alignment considerations.

pointer_to_line_number: u32

The file offset of the first COFF line-number entry for the function, or zero if none exists.

pointer_to_next_function: u32

The symbol-table index of the record for the next function.

If the function is the last in the symbol table, this field is set to zero.

unused: [u8; 2]

Unused padding.

Trait Implementations

impl PartialEq<AuxFunctionDefinition> for AuxFunctionDefinition[src]

impl Copy for AuxFunctionDefinition[src]

impl Default for AuxFunctionDefinition[src]

impl Clone for AuxFunctionDefinition[src]

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

Performs copy-assignment from source. Read more

impl Debug for AuxFunctionDefinition[src]

impl FromCtx<Endian, [u8]> for AuxFunctionDefinition[src]

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

type Error = Error

type Size = usize

impl<'a> IntoCtx<Endian, [u8]> for &'a AuxFunctionDefinition[src]

impl IntoCtx<Endian, [u8]> for AuxFunctionDefinition[src]

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

type Error = Error

type Size = usize

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

type Error = Error

type Size = usize

impl SizeWith<Endian> for AuxFunctionDefinition[src]

type Units = usize

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<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]