pub enum FunctionDefinitionChildren<'tree> {
AttributeDeclaration(Box<AttributeDeclaration<'tree>>),
AttributeSpecifier(Box<AttributeSpecifier<'tree>>),
DefaultMethodClause(Box<DefaultMethodClause<'tree>>),
DeleteMethodClause(Box<DeleteMethodClause<'tree>>),
ExplicitFunctionSpecifier(Box<ExplicitFunctionSpecifier<'tree>>),
FieldInitializerList(Box<FieldInitializerList<'tree>>),
MsCallModifier(Box<MsCallModifier<'tree>>),
MsDeclspecModifier(Box<MsDeclspecModifier<'tree>>),
PureVirtualClause(Box<PureVirtualClause<'tree>>),
StorageClassSpecifier(Box<StorageClassSpecifier<'tree>>),
TryStatement(Box<TryStatement<'tree>>),
TypeQualifier(Box<TypeQualifier<'tree>>),
}Variants§
AttributeDeclaration(Box<AttributeDeclaration<'tree>>)
AttributeSpecifier(Box<AttributeSpecifier<'tree>>)
DefaultMethodClause(Box<DefaultMethodClause<'tree>>)
DeleteMethodClause(Box<DeleteMethodClause<'tree>>)
ExplicitFunctionSpecifier(Box<ExplicitFunctionSpecifier<'tree>>)
FieldInitializerList(Box<FieldInitializerList<'tree>>)
MsCallModifier(Box<MsCallModifier<'tree>>)
MsDeclspecModifier(Box<MsDeclspecModifier<'tree>>)
PureVirtualClause(Box<PureVirtualClause<'tree>>)
StorageClassSpecifier(Box<StorageClassSpecifier<'tree>>)
TryStatement(Box<TryStatement<'tree>>)
TypeQualifier(Box<TypeQualifier<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for FunctionDefinitionChildren<'tree>
impl<'tree> Clone for FunctionDefinitionChildren<'tree>
Source§fn clone(&self) -> FunctionDefinitionChildren<'tree>
fn clone(&self) -> FunctionDefinitionChildren<'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 FunctionDefinitionChildren<'tree>
impl<'tree> Debug for FunctionDefinitionChildren<'tree>
Source§impl<'tree> FromNode<'tree> for FunctionDefinitionChildren<'tree>
impl<'tree> FromNode<'tree> for FunctionDefinitionChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for FunctionDefinitionChildren<'tree>
impl<'tree> RefUnwindSafe for FunctionDefinitionChildren<'tree>
impl<'tree> Send for FunctionDefinitionChildren<'tree>
impl<'tree> Sync for FunctionDefinitionChildren<'tree>
impl<'tree> Unpin for FunctionDefinitionChildren<'tree>
impl<'tree> UnsafeUnpin for FunctionDefinitionChildren<'tree>
impl<'tree> UnwindSafe for FunctionDefinitionChildren<'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