pub enum DeclarationType {
FunctionOrGeneratorDeclaration(FunctionData),
VariableDeclaration(VariableDeclarationData),
ClassDeclaration(ClassData),
}Variants§
FunctionOrGeneratorDeclaration(FunctionData)
VariableDeclaration(VariableDeclarationData)
ClassDeclaration(ClassData)
Trait Implementations§
Source§impl Debug for DeclarationType
impl Debug for DeclarationType
Auto Trait Implementations§
impl Freeze for DeclarationType
impl RefUnwindSafe for DeclarationType
impl !Send for DeclarationType
impl !Sync for DeclarationType
impl Unpin for DeclarationType
impl UnwindSafe for DeclarationType
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