pub struct LexicalDeclaration<'tree> {
pub span: Span,
pub kind: LexicalDeclarationKind,
pub children: Vec<VariableDeclarator<'tree>>,
}Fields§
§span: Span§kind: LexicalDeclarationKind§children: Vec<VariableDeclarator<'tree>>Trait Implementations§
Source§impl<'tree> Clone for LexicalDeclaration<'tree>
impl<'tree> Clone for LexicalDeclaration<'tree>
Source§fn clone(&self) -> LexicalDeclaration<'tree>
fn clone(&self) -> LexicalDeclaration<'tree>
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<'tree> Debug for LexicalDeclaration<'tree>
impl<'tree> Debug for LexicalDeclaration<'tree>
Source§impl<'tree> FromNode<'tree> for LexicalDeclaration<'tree>
impl<'tree> FromNode<'tree> for LexicalDeclaration<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for LexicalDeclaration<'tree>
impl<'tree> RefUnwindSafe for LexicalDeclaration<'tree>
impl<'tree> Send for LexicalDeclaration<'tree>
impl<'tree> Sync for LexicalDeclaration<'tree>
impl<'tree> Unpin for LexicalDeclaration<'tree>
impl<'tree> UnsafeUnpin for LexicalDeclaration<'tree>
impl<'tree> UnwindSafe for LexicalDeclaration<'tree>
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