pub enum SymbolScope {
Global,
Local,
Weak,
}Expand description
Visibility and binding scope of an ELF symbol.
Variants§
Global
Global symbol, visible to other objects.
Local
Local symbol, visible only within the defining object.
Weak
Weak symbol, can be overridden by a global symbol.
Trait Implementations§
Source§impl Clone for SymbolScope
impl Clone for SymbolScope
Source§fn clone(&self) -> SymbolScope
fn clone(&self) -> SymbolScope
Returns a duplicate 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 moreSource§impl Debug for SymbolScope
impl Debug for SymbolScope
Source§impl PartialEq for SymbolScope
impl PartialEq for SymbolScope
impl Copy for SymbolScope
impl StructuralPartialEq for SymbolScope
Auto Trait Implementations§
impl Freeze for SymbolScope
impl RefUnwindSafe for SymbolScope
impl Send for SymbolScope
impl Sync for SymbolScope
impl Unpin for SymbolScope
impl UnwindSafe for SymbolScope
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more