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