Struct object::read::SymbolTable[][src]

pub struct SymbolTable<'data, 'file, R = &'data [u8]> where
    'data: 'file,
    R: ReadRef<'data>, 
{ /* fields omitted */ }

A symbol table.

Trait Implementations

impl<'data, 'file, R: Debug> Debug for SymbolTable<'data, 'file, R> where
    'data: 'file,
    R: ReadRef<'data>, 
[src]

impl<'data, 'file, R: ReadRef<'data>> ObjectSymbolTable<'data> for SymbolTable<'data, 'file, R>[src]

type Symbol = Symbol<'data, 'file, R>

A symbol table entry.

type SymbolIterator = SymbolIterator<'data, 'file, R>

An iterator over the symbols in a symbol table.

Auto Trait Implementations

impl<'data, 'file, R> RefUnwindSafe for SymbolTable<'data, 'file, R> where
    R: RefUnwindSafe

impl<'data, 'file, R> Send for SymbolTable<'data, 'file, R> where
    R: Send + Sync

impl<'data, 'file, R> Sync for SymbolTable<'data, 'file, R> where
    R: Sync

impl<'data, 'file, R> Unpin for SymbolTable<'data, 'file, R> where
    R: Unpin,
    'data: 'file, 

impl<'data, 'file, R> UnwindSafe for SymbolTable<'data, 'file, R> where
    R: RefUnwindSafe + UnwindSafe

Blanket Implementations

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

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

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

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.