Enum pelite::pe32::exports::Export[][src]

pub enum Export<'a> {
    Symbol(&'a Rva),
    Forward(&'a CStr),
}

Exported symbol.

Variants

Standard exported symbol.

This export is forwarded to another dll.

Format of the string is "DllName.ExportName". For more information see this blog post by Raymond Chen.

Methods

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

Returns some if the symbol is exported.

Returns some if the symbol is forwarded.

Trait Implementations

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

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

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

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl<'a> Send for Export<'a>

impl<'a> Sync for Export<'a>