pub enum ReferenceDeclaratorChildren<'tree> {
Declarator(Box<Declarator<'tree>>),
FieldDeclarator(Box<FieldDeclarator<'tree>>),
TypeDeclarator(Box<TypeDeclarator<'tree>>),
VariadicDeclarator(Box<VariadicDeclarator<'tree>>),
}Variants§
Declarator(Box<Declarator<'tree>>)
FieldDeclarator(Box<FieldDeclarator<'tree>>)
TypeDeclarator(Box<TypeDeclarator<'tree>>)
VariadicDeclarator(Box<VariadicDeclarator<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for ReferenceDeclaratorChildren<'tree>
impl<'tree> Clone for ReferenceDeclaratorChildren<'tree>
Source§fn clone(&self) -> ReferenceDeclaratorChildren<'tree>
fn clone(&self) -> ReferenceDeclaratorChildren<'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 ReferenceDeclaratorChildren<'tree>
impl<'tree> Debug for ReferenceDeclaratorChildren<'tree>
Source§impl<'tree> FromNode<'tree> for ReferenceDeclaratorChildren<'tree>
impl<'tree> FromNode<'tree> for ReferenceDeclaratorChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ReferenceDeclaratorChildren<'tree>
impl<'tree> RefUnwindSafe for ReferenceDeclaratorChildren<'tree>
impl<'tree> Send for ReferenceDeclaratorChildren<'tree>
impl<'tree> Sync for ReferenceDeclaratorChildren<'tree>
impl<'tree> Unpin for ReferenceDeclaratorChildren<'tree>
impl<'tree> UnsafeUnpin for ReferenceDeclaratorChildren<'tree>
impl<'tree> UnwindSafe for ReferenceDeclaratorChildren<'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