pub enum InterfaceBodyChildren<'tree> {
AnnotationTypeDeclaration(Box<AnnotationTypeDeclaration<'tree>>),
ClassDeclaration(Box<ClassDeclaration<'tree>>),
ConstantDeclaration(Box<ConstantDeclaration<'tree>>),
EnumDeclaration(Box<EnumDeclaration<'tree>>),
InterfaceDeclaration(Box<InterfaceDeclaration<'tree>>),
MethodDeclaration(Box<MethodDeclaration<'tree>>),
RecordDeclaration(Box<RecordDeclaration<'tree>>),
}Variants§
AnnotationTypeDeclaration(Box<AnnotationTypeDeclaration<'tree>>)
ClassDeclaration(Box<ClassDeclaration<'tree>>)
ConstantDeclaration(Box<ConstantDeclaration<'tree>>)
EnumDeclaration(Box<EnumDeclaration<'tree>>)
InterfaceDeclaration(Box<InterfaceDeclaration<'tree>>)
MethodDeclaration(Box<MethodDeclaration<'tree>>)
RecordDeclaration(Box<RecordDeclaration<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for InterfaceBodyChildren<'tree>
impl<'tree> Clone for InterfaceBodyChildren<'tree>
Source§fn clone(&self) -> InterfaceBodyChildren<'tree>
fn clone(&self) -> InterfaceBodyChildren<'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 InterfaceBodyChildren<'tree>
impl<'tree> Debug for InterfaceBodyChildren<'tree>
Source§impl<'tree> FromNode<'tree> for InterfaceBodyChildren<'tree>
impl<'tree> FromNode<'tree> for InterfaceBodyChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for InterfaceBodyChildren<'tree>
impl<'tree> RefUnwindSafe for InterfaceBodyChildren<'tree>
impl<'tree> Send for InterfaceBodyChildren<'tree>
impl<'tree> Sync for InterfaceBodyChildren<'tree>
impl<'tree> Unpin for InterfaceBodyChildren<'tree>
impl<'tree> UnsafeUnpin for InterfaceBodyChildren<'tree>
impl<'tree> UnwindSafe for InterfaceBodyChildren<'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