pub enum SymbolType {
Variable(Type),
Function(FunctionSignature),
Class(ClassSignature),
Interface(InterfaceSignature),
Type(Type),
Enum(EnumSignature),
}
Expand description
Type of symbol
Variants§
Variable(Type)
Function(FunctionSignature)
Class(ClassSignature)
Interface(InterfaceSignature)
Type(Type)
Enum(EnumSignature)
Trait Implementations§
Source§impl Clone for SymbolType
impl Clone for SymbolType
Source§fn clone(&self) -> SymbolType
fn clone(&self) -> SymbolType
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 moreAuto Trait Implementations§
impl Freeze for SymbolType
impl RefUnwindSafe for SymbolType
impl Send for SymbolType
impl Sync for SymbolType
impl Unpin for SymbolType
impl UnwindSafe for SymbolType
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