pub enum SymbolScope {
Global,
Local,
Builtin,
Free,
Function,
}Expand description
Scope classification for a symbol.
Variants§
Global
A globally-scoped variable, accessible from any point in the program.
Local
A locally-scoped variable, accessible only within its enclosing function.
Builtin
A built-in function, resolved at compile time by index.
Free
A free variable captured from an enclosing scope.
Function
The enclosing function’s own name, enabling recursive self-reference.
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 Eq 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 UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.