Enum swc_ecma_ast::Decl[][src]

pub enum Decl {
    Class(ClassDecl),
    Fn(FnDecl),
    Var(VarDecl),
    TsInterface(TsInterfaceDecl),
    TsTypeAlias(TsTypeAliasDecl),
    TsEnum(TsEnumDecl),
    TsModule(TsModuleDecl),
}

Variants

Class(ClassDecl)
Fn(FnDecl)
Var(VarDecl)
TsInterface(TsInterfaceDecl)
TsTypeAlias(TsTypeAliasDecl)
TsEnum(TsEnumDecl)
TsModule(TsModuleDecl)

Implementations

impl Decl[src]

pub fn is_class(&self) -> bool[src]

Returns true if self is of variant Class.

pub fn expect_class(self) -> ClassDecl where
    Self: Debug
[src]

Unwraps the value, yielding the content of Class.

Panics

Panics if the value is not Class, with a panic message including the content of self.

pub fn class(self) -> Option<ClassDecl>[src]

Returns Some if self is of variant Class, and None otherwise.

pub fn is_fn_decl(&self) -> bool[src]

Returns true if self is of variant Fn.

pub fn expect_fn_decl(self) -> FnDecl where
    Self: Debug
[src]

Unwraps the value, yielding the content of Fn.

Panics

Panics if the value is not Fn, with a panic message including the content of self.

pub fn fn_decl(self) -> Option<FnDecl>[src]

Returns Some if self is of variant Fn, and None otherwise.

pub fn is_var(&self) -> bool[src]

Returns true if self is of variant Var.

pub fn expect_var(self) -> VarDecl where
    Self: Debug
[src]

Unwraps the value, yielding the content of Var.

Panics

Panics if the value is not Var, with a panic message including the content of self.

pub fn var(self) -> Option<VarDecl>[src]

Returns Some if self is of variant Var, and None otherwise.

pub fn is_ts_interface(&self) -> bool[src]

Returns true if self is of variant TsInterface.

pub fn expect_ts_interface(self) -> TsInterfaceDecl where
    Self: Debug
[src]

Unwraps the value, yielding the content of TsInterface.

Panics

Panics if the value is not TsInterface, with a panic message including the content of self.

pub fn ts_interface(self) -> Option<TsInterfaceDecl>[src]

Returns Some if self is of variant TsInterface, and None otherwise.

pub fn is_ts_type_alias(&self) -> bool[src]

Returns true if self is of variant TsTypeAlias.

pub fn expect_ts_type_alias(self) -> TsTypeAliasDecl where
    Self: Debug
[src]

Unwraps the value, yielding the content of TsTypeAlias.

Panics

Panics if the value is not TsTypeAlias, with a panic message including the content of self.

pub fn ts_type_alias(self) -> Option<TsTypeAliasDecl>[src]

Returns Some if self is of variant TsTypeAlias, and None otherwise.

pub fn is_ts_enum(&self) -> bool[src]

Returns true if self is of variant TsEnum.

pub fn expect_ts_enum(self) -> TsEnumDecl where
    Self: Debug
[src]

Unwraps the value, yielding the content of TsEnum.

Panics

Panics if the value is not TsEnum, with a panic message including the content of self.

pub fn ts_enum(self) -> Option<TsEnumDecl>[src]

Returns Some if self is of variant TsEnum, and None otherwise.

pub fn is_ts_module(&self) -> bool[src]

Returns true if self is of variant TsModule.

pub fn expect_ts_module(self) -> TsModuleDecl where
    Self: Debug
[src]

Unwraps the value, yielding the content of TsModule.

Panics

Panics if the value is not TsModule, with a panic message including the content of self.

pub fn ts_module(self) -> Option<TsModuleDecl>[src]

Returns Some if self is of variant TsModule, and None otherwise.

Trait Implementations

impl Clone for Decl[src]

impl Debug for Decl[src]

impl<'de> Deserialize<'de> for Decl[src]

impl Eq for Decl[src]

impl EqIgnoreSpan for Decl[src]

impl From<ClassDecl> for Decl[src]

impl From<Decl> for Stmt[src]

impl From<FnDecl> for Decl[src]

impl From<TsEnumDecl> for Decl[src]

impl From<TsInterfaceDecl> for Decl[src]

impl From<TsModuleDecl> for Decl[src]

impl From<TsTypeAliasDecl> for Decl[src]

impl From<VarDecl> for Decl[src]

impl Hash for Decl[src]

impl PartialEq<Decl> for Decl[src]

impl Serialize for Decl[src]

impl Spanned for Decl[src]

impl StructuralEq for Decl[src]

impl StructuralPartialEq for Decl[src]

Auto Trait Implementations

impl RefUnwindSafe for Decl

impl Send for Decl

impl Sync for Decl

impl Unpin for Decl

impl UnwindSafe for Decl

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.