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§
impl Freeze for SymbolBinding
impl RefUnwindSafe for SymbolBinding
impl Send for SymbolBinding
impl Sync for SymbolBinding
impl Unpin for SymbolBinding
impl UnwindSafe for SymbolBinding
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