pub enum InterfaceClassItem {
    TypeDeclaration(Box<TypeDeclaration>),
    Method(Box<InterfaceClassItemMethod>),
    LocalParameterDeclaration(Box<(LocalParameterDeclaration, Symbol)>),
    ParameterDeclaration(Box<(ParameterDeclaration, Symbol)>),
    Null(Box<Symbol>),
}Variants§
TypeDeclaration(Box<TypeDeclaration>)
Method(Box<InterfaceClassItemMethod>)
LocalParameterDeclaration(Box<(LocalParameterDeclaration, Symbol)>)
ParameterDeclaration(Box<(ParameterDeclaration, Symbol)>)
Null(Box<Symbol>)
Trait Implementations§
Source§impl Clone for InterfaceClassItem
 
impl Clone for InterfaceClassItem
Source§fn clone(&self) -> InterfaceClassItem
 
fn clone(&self) -> InterfaceClassItem
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 Debug for InterfaceClassItem
 
impl Debug for InterfaceClassItem
Source§impl<'a> From<&'a InterfaceClassItem> for RefNode<'a>
 
impl<'a> From<&'a InterfaceClassItem> for RefNode<'a>
Source§fn from(x: &'a InterfaceClassItem) -> RefNode<'a>
 
fn from(x: &'a InterfaceClassItem) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a InterfaceClassItem> for RefNodes<'a>
 
impl<'a> From<&'a InterfaceClassItem> for RefNodes<'a>
Source§fn from(x: &'a InterfaceClassItem) -> RefNodes<'a>
 
fn from(x: &'a InterfaceClassItem) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<InterfaceClassItem> for AnyNode
 
impl From<InterfaceClassItem> for AnyNode
Source§fn from(x: InterfaceClassItem) -> AnyNode
 
fn from(x: InterfaceClassItem) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a InterfaceClassItem
 
impl<'a> IntoIterator for &'a InterfaceClassItem
Source§impl PartialEq for InterfaceClassItem
 
impl PartialEq for InterfaceClassItem
Source§impl<'a> TryFrom<&'a InterfaceClassItem> for Locate
 
impl<'a> TryFrom<&'a InterfaceClassItem> for Locate
Source§impl TryFrom<AnyNode> for InterfaceClassItem
 
impl TryFrom<AnyNode> for InterfaceClassItem
Source§impl TryFrom<InterfaceClassItem> for Locate
 
impl TryFrom<InterfaceClassItem> for Locate
impl StructuralPartialEq for InterfaceClassItem
Auto Trait Implementations§
impl Freeze for InterfaceClassItem
impl RefUnwindSafe for InterfaceClassItem
impl Send for InterfaceClassItem
impl Sync for InterfaceClassItem
impl Unpin for InterfaceClassItem
impl UnwindSafe for InterfaceClassItem
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