pub enum TemplateParameterListChildren<'tree> {
OptionalParameterDeclaration(Box<OptionalParameterDeclaration<'tree>>),
OptionalTypeParameterDeclaration(Box<OptionalTypeParameterDeclaration<'tree>>),
ParameterDeclaration(Box<ParameterDeclaration<'tree>>),
TemplateTemplateParameterDeclaration(Box<TemplateTemplateParameterDeclaration<'tree>>),
TypeParameterDeclaration(Box<TypeParameterDeclaration<'tree>>),
VariadicParameterDeclaration(Box<VariadicParameterDeclaration<'tree>>),
VariadicTypeParameterDeclaration(Box<VariadicTypeParameterDeclaration<'tree>>),
}Variants§
OptionalParameterDeclaration(Box<OptionalParameterDeclaration<'tree>>)
OptionalTypeParameterDeclaration(Box<OptionalTypeParameterDeclaration<'tree>>)
ParameterDeclaration(Box<ParameterDeclaration<'tree>>)
TemplateTemplateParameterDeclaration(Box<TemplateTemplateParameterDeclaration<'tree>>)
TypeParameterDeclaration(Box<TypeParameterDeclaration<'tree>>)
VariadicParameterDeclaration(Box<VariadicParameterDeclaration<'tree>>)
VariadicTypeParameterDeclaration(Box<VariadicTypeParameterDeclaration<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for TemplateParameterListChildren<'tree>
impl<'tree> Clone for TemplateParameterListChildren<'tree>
Source§fn clone(&self) -> TemplateParameterListChildren<'tree>
fn clone(&self) -> TemplateParameterListChildren<'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 TemplateParameterListChildren<'tree>
impl<'tree> Debug for TemplateParameterListChildren<'tree>
Source§impl<'tree> FromNode<'tree> for TemplateParameterListChildren<'tree>
impl<'tree> FromNode<'tree> for TemplateParameterListChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for TemplateParameterListChildren<'tree>
impl<'tree> RefUnwindSafe for TemplateParameterListChildren<'tree>
impl<'tree> Send for TemplateParameterListChildren<'tree>
impl<'tree> Sync for TemplateParameterListChildren<'tree>
impl<'tree> Unpin for TemplateParameterListChildren<'tree>
impl<'tree> UnsafeUnpin for TemplateParameterListChildren<'tree>
impl<'tree> UnwindSafe for TemplateParameterListChildren<'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