pub enum SelfParameterChildren<'tree> {
Lifetime(Box<Lifetime<'tree>>),
MutableSpecifier(Box<MutableSpecifier<'tree>>),
SelfType(Box<SelfType<'tree>>),
}Variants§
Lifetime(Box<Lifetime<'tree>>)
MutableSpecifier(Box<MutableSpecifier<'tree>>)
SelfType(Box<SelfType<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for SelfParameterChildren<'tree>
impl<'tree> Clone for SelfParameterChildren<'tree>
Source§fn clone(&self) -> SelfParameterChildren<'tree>
fn clone(&self) -> SelfParameterChildren<'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 SelfParameterChildren<'tree>
impl<'tree> Debug for SelfParameterChildren<'tree>
Source§impl<'tree> FromNode<'tree> for SelfParameterChildren<'tree>
impl<'tree> FromNode<'tree> for SelfParameterChildren<'tree>
Source§impl<'tree> PartialEq for SelfParameterChildren<'tree>
impl<'tree> PartialEq for SelfParameterChildren<'tree>
Source§fn eq(&self, other: &SelfParameterChildren<'tree>) -> bool
fn eq(&self, other: &SelfParameterChildren<'tree>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Spanned for SelfParameterChildren<'_>
impl Spanned for SelfParameterChildren<'_>
impl<'tree> Eq for SelfParameterChildren<'tree>
impl<'tree> StructuralPartialEq for SelfParameterChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for SelfParameterChildren<'tree>
impl<'tree> RefUnwindSafe for SelfParameterChildren<'tree>
impl<'tree> Send for SelfParameterChildren<'tree>
impl<'tree> Sync for SelfParameterChildren<'tree>
impl<'tree> Unpin for SelfParameterChildren<'tree>
impl<'tree> UnsafeUnpin for SelfParameterChildren<'tree>
impl<'tree> UnwindSafe for SelfParameterChildren<'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