[][src]Struct goblin::elf64::gnu_hash::GnuHash

pub struct GnuHash<'process> { /* fields omitted */ }

Methods

impl<'process> GnuHash<'process>[src]

pub unsafe fn new(
    hashtab: *const u32,
    total_dynsyms: usize,
    symtab: &'process [Sym]
) -> GnuHash<'process>
[src]

pub fn find(&self, name: &str, hash: u32, strtab: &Strtab) -> Option<&Sym>[src]

Given a name, a hash of that name, a strtab to cross-reference names, maybe returns a Sym

Auto Trait Implementations

impl<'process> Send for GnuHash<'process>

impl<'process> Sync for GnuHash<'process>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.