pub struct Export<'a> {
    pub name: String,
    pub info: ExportInfo<'a>,
    pub size: usize,
    pub offset: u64,
}Expand description
A finalized symbolic export reconstructed from the export trie
Fields§
§name: StringThe reconsituted export name which dyld matches against
info: ExportInfo<'a>The export info in the node data
size: usizeHow large this export is
offset: u64The offset this symbol export is found in the binary
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Export<'a>
impl<'a> RefUnwindSafe for Export<'a>
impl<'a> Send for Export<'a>
impl<'a> Sync for Export<'a>
impl<'a> Unpin for Export<'a>
impl<'a> UnwindSafe for Export<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more