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