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
Performs the conversion.
Performs the conversion.
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for InterfaceClassItem
impl Send for InterfaceClassItem
impl Sync for InterfaceClassItem
impl Unpin for InterfaceClassItem
impl UnwindSafe for InterfaceClassItem
Blanket Implementations
Mutably borrows from an owned value. Read more