pub enum InitStatementChildren<'tree> {
AliasDeclaration(Box<AliasDeclaration<'tree>>),
Declaration(Box<Declaration<'tree>>),
ExpressionStatement(Box<ExpressionStatement<'tree>>),
TypeDefinition(Box<TypeDefinition<'tree>>),
}Variants§
AliasDeclaration(Box<AliasDeclaration<'tree>>)
Declaration(Box<Declaration<'tree>>)
ExpressionStatement(Box<ExpressionStatement<'tree>>)
TypeDefinition(Box<TypeDefinition<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for InitStatementChildren<'tree>
impl<'tree> Clone for InitStatementChildren<'tree>
Source§fn clone(&self) -> InitStatementChildren<'tree>
fn clone(&self) -> InitStatementChildren<'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 InitStatementChildren<'tree>
impl<'tree> Debug for InitStatementChildren<'tree>
Source§impl<'tree> FromNode<'tree> for InitStatementChildren<'tree>
impl<'tree> FromNode<'tree> for InitStatementChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for InitStatementChildren<'tree>
impl<'tree> RefUnwindSafe for InitStatementChildren<'tree>
impl<'tree> Send for InitStatementChildren<'tree>
impl<'tree> Sync for InitStatementChildren<'tree>
impl<'tree> Unpin for InitStatementChildren<'tree>
impl<'tree> UnsafeUnpin for InitStatementChildren<'tree>
impl<'tree> UnwindSafe for InitStatementChildren<'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