pub enum ParametersChildren<'tree> {
Type(Box<Type<'tree>>),
AttributeItem(Box<AttributeItem<'tree>>),
Parameter(Box<Parameter<'tree>>),
SelfParameter(Box<SelfParameter<'tree>>),
VariadicParameter(Box<VariadicParameter<'tree>>),
}Variants§
Type(Box<Type<'tree>>)
AttributeItem(Box<AttributeItem<'tree>>)
Parameter(Box<Parameter<'tree>>)
SelfParameter(Box<SelfParameter<'tree>>)
VariadicParameter(Box<VariadicParameter<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for ParametersChildren<'tree>
impl<'tree> Clone for ParametersChildren<'tree>
Source§fn clone(&self) -> ParametersChildren<'tree>
fn clone(&self) -> ParametersChildren<'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 ParametersChildren<'tree>
impl<'tree> Debug for ParametersChildren<'tree>
Source§impl<'tree> FromNode<'tree> for ParametersChildren<'tree>
impl<'tree> FromNode<'tree> for ParametersChildren<'tree>
Source§impl<'tree> PartialEq for ParametersChildren<'tree>
impl<'tree> PartialEq for ParametersChildren<'tree>
Source§impl Spanned for ParametersChildren<'_>
impl Spanned for ParametersChildren<'_>
impl<'tree> Eq for ParametersChildren<'tree>
impl<'tree> StructuralPartialEq for ParametersChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ParametersChildren<'tree>
impl<'tree> RefUnwindSafe for ParametersChildren<'tree>
impl<'tree> Send for ParametersChildren<'tree>
impl<'tree> Sync for ParametersChildren<'tree>
impl<'tree> Unpin for ParametersChildren<'tree>
impl<'tree> UnsafeUnpin for ParametersChildren<'tree>
impl<'tree> UnwindSafe for ParametersChildren<'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