Struct pdb::SymbolIndex[][src]

pub struct SymbolIndex(pub u32);

A reference into the symbol table of a module.

To retrieve the symbol referenced by this index, use ModuleInfo::symbols_at. When iterating, use SymbolIter::seek to jump between symbols.

Trait Implementations

impl Clone for SymbolIndex[src]

impl Copy for SymbolIndex[src]

impl Debug for SymbolIndex[src]

impl Display for SymbolIndex[src]

impl Eq for SymbolIndex[src]

impl From<u32> for SymbolIndex[src]

impl Hash for SymbolIndex[src]

impl Ord for SymbolIndex[src]

impl PartialEq<SymbolIndex> for SymbolIndex[src]

impl PartialOrd<SymbolIndex> for SymbolIndex[src]

impl StructuralEq for SymbolIndex[src]

impl StructuralPartialEq for SymbolIndex[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for SymbolIndex[src]

type Error = Error

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.