pub enum SymbolBinding {
    Local,
    Global,
    Weak,
    Os(u8),
    Proc(u8),
}

Variants§

§

Local

Only visible inside the object file that defines it.

§

Global

Global symbol - visible to all object files.

§

Weak

Global scope, but with a lower precedence than global symbols.

§

Os(u8)

Environment-specific use.

§

Proc(u8)

Processor-specific use.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.