Struct goblin::pe::export::Export [] [src]

pub struct Export<'a> {
    pub name: &'a str,
    pub offset: usize,
    pub rva: usize,
    pub size: usize,
    pub reexport: Option<Reexport<'a>>,
}

An exported symbol in this binary, contains synthetic data (name offset, etc., are computed)

Fields

Methods

impl<'a> Export<'a>
[src]

[src]

Trait Implementations

impl<'a> Debug for Export<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> Default for Export<'a>
[src]

[src]

Returns the "default value" for a type. Read more

impl<'a, 'b> TryFromCtx<'a, ExportCtx<'b>> for Export<'a>
[src]

[src]