pub enum InterfaceBodyChildren<'tree> {
CallSignature(Box<CallSignature<'tree>>),
ConstructSignature(Box<ConstructSignature<'tree>>),
ExportStatement(Box<ExportStatement<'tree>>),
IndexSignature(Box<IndexSignature<'tree>>),
MethodSignature(Box<MethodSignature<'tree>>),
PropertySignature(Box<PropertySignature<'tree>>),
}Variants§
CallSignature(Box<CallSignature<'tree>>)
ConstructSignature(Box<ConstructSignature<'tree>>)
ExportStatement(Box<ExportStatement<'tree>>)
IndexSignature(Box<IndexSignature<'tree>>)
MethodSignature(Box<MethodSignature<'tree>>)
PropertySignature(Box<PropertySignature<'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 (const: unstable) · 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>
impl<'tree> Eq for InterfaceBodyChildren<'tree>
Source§impl<'tree> FromNode<'tree> for InterfaceBodyChildren<'tree>
impl<'tree> FromNode<'tree> for InterfaceBodyChildren<'tree>
Source§impl<'tree> PartialEq for InterfaceBodyChildren<'tree>
impl<'tree> PartialEq for InterfaceBodyChildren<'tree>
Source§impl Spanned for InterfaceBodyChildren<'_>
impl Spanned for InterfaceBodyChildren<'_>
impl<'tree> StructuralPartialEq 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