Enum object::SymbolScope
source · pub enum SymbolScope {
Unknown,
Compilation,
Linkage,
Dynamic,
}
Expand description
A symbol scope.
Variants§
Unknown
Unknown scope.
Compilation
Symbol is visible to the compilation unit.
Linkage
Symbol is visible to the static linkage unit.
Dynamic
Symbol is visible to dynamically linked objects.
Trait Implementations§
source§impl Clone for SymbolScope
impl Clone for SymbolScope
source§fn clone(&self) -> SymbolScope
fn clone(&self) -> SymbolScope
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more