Enum rustc_trans::back::symbol_export::SymbolExportLevel [] [src]

pub enum SymbolExportLevel {
    C,
    Rust,
}
🔬 This is a nightly-only experimental API. (rustc_private)

The SymbolExportLevel of a symbols specifies from which kinds of crates the symbol will be exported. C symbols will be exported from any kind of crate, including cdylibs which export very few things. Rust will only be exported if the crate produced is a Rust dylib.

Variants

🔬 This is a nightly-only experimental API. (rustc_private)
🔬 This is a nightly-only experimental API. (rustc_private)

Trait Implementations

impl Eq for SymbolExportLevel
[src]

impl PartialEq for SymbolExportLevel
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for SymbolExportLevel
[src]

Formats the value using the given formatter.

impl Copy for SymbolExportLevel
[src]

impl Clone for SymbolExportLevel
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more