pub enum AbstractFunctionDeclaratorChildren<'tree> {
AttributeDeclaration(Box<AttributeDeclaration<'tree>>),
AttributeSpecifier(Box<AttributeSpecifier<'tree>>),
GnuAsmExpression(Box<GnuAsmExpression<'tree>>),
Noexcept(Box<Noexcept<'tree>>),
RefQualifier(Box<RefQualifier<'tree>>),
RequiresClause(Box<RequiresClause<'tree>>),
ThrowSpecifier(Box<ThrowSpecifier<'tree>>),
TrailingReturnType(Box<TrailingReturnType<'tree>>),
TypeQualifier(Box<TypeQualifier<'tree>>),
VirtualSpecifier(Box<VirtualSpecifier<'tree>>),
}Variants§
AttributeDeclaration(Box<AttributeDeclaration<'tree>>)
AttributeSpecifier(Box<AttributeSpecifier<'tree>>)
GnuAsmExpression(Box<GnuAsmExpression<'tree>>)
Noexcept(Box<Noexcept<'tree>>)
RefQualifier(Box<RefQualifier<'tree>>)
RequiresClause(Box<RequiresClause<'tree>>)
ThrowSpecifier(Box<ThrowSpecifier<'tree>>)
TrailingReturnType(Box<TrailingReturnType<'tree>>)
TypeQualifier(Box<TypeQualifier<'tree>>)
VirtualSpecifier(Box<VirtualSpecifier<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for AbstractFunctionDeclaratorChildren<'tree>
impl<'tree> Clone for AbstractFunctionDeclaratorChildren<'tree>
Source§fn clone(&self) -> AbstractFunctionDeclaratorChildren<'tree>
fn clone(&self) -> AbstractFunctionDeclaratorChildren<'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 AbstractFunctionDeclaratorChildren<'tree>
impl<'tree> Debug for AbstractFunctionDeclaratorChildren<'tree>
Source§impl<'tree> FromNode<'tree> for AbstractFunctionDeclaratorChildren<'tree>
impl<'tree> FromNode<'tree> for AbstractFunctionDeclaratorChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for AbstractFunctionDeclaratorChildren<'tree>
impl<'tree> RefUnwindSafe for AbstractFunctionDeclaratorChildren<'tree>
impl<'tree> Send for AbstractFunctionDeclaratorChildren<'tree>
impl<'tree> Sync for AbstractFunctionDeclaratorChildren<'tree>
impl<'tree> Unpin for AbstractFunctionDeclaratorChildren<'tree>
impl<'tree> UnsafeUnpin for AbstractFunctionDeclaratorChildren<'tree>
impl<'tree> UnwindSafe for AbstractFunctionDeclaratorChildren<'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