[][src]Enum object::SymbolKind

pub enum SymbolKind {
    Unknown,
    Null,
    Text,
    Data,
    Section,
    File,
    Label,
    Tls,
}

The kind of a symbol.

Variants

Unknown

The symbol kind is unknown.

Null

The symbol is a null placeholder.

Text

The symbol is for executable code.

Data

The symbol is for a data object.

Section

The symbol is for a section.

File

The symbol is the name of a file. It precedes symbols within that file.

Label

The symbol is for a code label.

Tls

The symbol is for a thread local storage entity.

Trait Implementations

impl Clone for SymbolKind[src]

impl Copy for SymbolKind[src]

impl Debug for SymbolKind[src]

impl Eq for SymbolKind[src]

impl PartialEq<SymbolKind> for SymbolKind[src]

impl StructuralEq for SymbolKind[src]

impl StructuralPartialEq for SymbolKind[src]

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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, 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.