[][src]Struct goblin::mach::exports::Export

pub struct Export<'a> {
    pub name: String,
    pub info: ExportInfo<'a>,
    pub size: usize,
    pub offset: u64,
}

A finalized symbolic export reconstructed from the export trie

Fields

name: String

The reconsituted export name which dyld matches against

info: ExportInfo<'a>

The export info in the node data

size: usize

How large this export is

offset: u64

The offset this symbol export is found in the binary

Methods

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

pub fn new(name: String, info: ExportInfo<'a>) -> Export<'a>[src]

Create a new export from name and info

Trait Implementations

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

Auto Trait Implementations

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

impl<'a> Unpin for Export<'a>

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

impl<'a> UnwindSafe for Export<'a>

impl<'a> RefUnwindSafe for Export<'a>

Blanket Implementations

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]