Enum swc_ecma_ast::ModuleDecl
source · [−]pub enum ModuleDecl {
Import(ImportDecl),
ExportDecl(ExportDecl),
ExportNamed(NamedExport),
ExportDefaultDecl(ExportDefaultDecl),
ExportDefaultExpr(ExportDefaultExpr),
ExportAll(ExportAll),
TsImportEquals(Box<TsImportEqualsDecl>),
TsExportAssignment(TsExportAssignment),
TsNamespaceExport(TsNamespaceExportDecl),
}
Variants
Import(ImportDecl)
ExportDecl(ExportDecl)
ExportNamed(NamedExport)
ExportDefaultDecl(ExportDefaultDecl)
ExportDefaultExpr(ExportDefaultExpr)
ExportAll(ExportAll)
TsImportEquals(Box<TsImportEqualsDecl>)
TsExportAssignment(TsExportAssignment)
TsNamespaceExport(TsNamespaceExportDecl)
Implementations
sourceimpl ModuleDecl
impl ModuleDecl
sourcepub fn as_import(&self) -> Option<&ImportDecl>
pub fn as_import(&self) -> Option<&ImportDecl>
Returns Some
if self
is a reference of variant Import
, and None
otherwise.
sourcepub fn as_mut_import(&mut self) -> Option<&mut ImportDecl>
pub fn as_mut_import(&mut self) -> Option<&mut ImportDecl>
Returns Some
if self
is a mutable reference of variant Import
, and None
otherwise.
sourcepub fn expect_import(self) -> ImportDeclwhere
Self: Debug,
pub fn expect_import(self) -> ImportDeclwhere
Self: Debug,
sourcepub fn import(self) -> Option<ImportDecl>
pub fn import(self) -> Option<ImportDecl>
Returns Some
if self
is of variant Import
, and None
otherwise.
sourcepub fn is_export_decl(&self) -> bool
pub fn is_export_decl(&self) -> bool
Returns true
if self
is of variant ExportDecl
.
sourcepub fn as_export_decl(&self) -> Option<&ExportDecl>
pub fn as_export_decl(&self) -> Option<&ExportDecl>
Returns Some
if self
is a reference of variant ExportDecl
, and None
otherwise.
sourcepub fn as_mut_export_decl(&mut self) -> Option<&mut ExportDecl>
pub fn as_mut_export_decl(&mut self) -> Option<&mut ExportDecl>
Returns Some
if self
is a mutable reference of variant ExportDecl
, and None
otherwise.
sourcepub fn expect_export_decl(self) -> ExportDeclwhere
Self: Debug,
pub fn expect_export_decl(self) -> ExportDeclwhere
Self: Debug,
Unwraps the value, yielding the content of ExportDecl
.
Panics
Panics if the value is not ExportDecl
, with a panic message including the content of self
.
sourcepub fn export_decl(self) -> Option<ExportDecl>
pub fn export_decl(self) -> Option<ExportDecl>
Returns Some
if self
is of variant ExportDecl
, and None
otherwise.
sourcepub fn is_export_named(&self) -> bool
pub fn is_export_named(&self) -> bool
Returns true
if self
is of variant ExportNamed
.
sourcepub fn as_export_named(&self) -> Option<&NamedExport>
pub fn as_export_named(&self) -> Option<&NamedExport>
Returns Some
if self
is a reference of variant ExportNamed
, and None
otherwise.
sourcepub fn as_mut_export_named(&mut self) -> Option<&mut NamedExport>
pub fn as_mut_export_named(&mut self) -> Option<&mut NamedExport>
Returns Some
if self
is a mutable reference of variant ExportNamed
, and None
otherwise.
sourcepub fn expect_export_named(self) -> NamedExportwhere
Self: Debug,
pub fn expect_export_named(self) -> NamedExportwhere
Self: Debug,
Unwraps the value, yielding the content of ExportNamed
.
Panics
Panics if the value is not ExportNamed
, with a panic message including the content of self
.
sourcepub fn export_named(self) -> Option<NamedExport>
pub fn export_named(self) -> Option<NamedExport>
Returns Some
if self
is of variant ExportNamed
, and None
otherwise.
sourcepub fn is_export_default_decl(&self) -> bool
pub fn is_export_default_decl(&self) -> bool
Returns true
if self
is of variant ExportDefaultDecl
.
sourcepub fn as_export_default_decl(&self) -> Option<&ExportDefaultDecl>
pub fn as_export_default_decl(&self) -> Option<&ExportDefaultDecl>
Returns Some
if self
is a reference of variant ExportDefaultDecl
, and None
otherwise.
sourcepub fn as_mut_export_default_decl(&mut self) -> Option<&mut ExportDefaultDecl>
pub fn as_mut_export_default_decl(&mut self) -> Option<&mut ExportDefaultDecl>
Returns Some
if self
is a mutable reference of variant ExportDefaultDecl
, and None
otherwise.
sourcepub fn expect_export_default_decl(self) -> ExportDefaultDeclwhere
Self: Debug,
pub fn expect_export_default_decl(self) -> ExportDefaultDeclwhere
Self: Debug,
Unwraps the value, yielding the content of ExportDefaultDecl
.
Panics
Panics if the value is not ExportDefaultDecl
, with a panic message including the content of self
.
sourcepub fn export_default_decl(self) -> Option<ExportDefaultDecl>
pub fn export_default_decl(self) -> Option<ExportDefaultDecl>
Returns Some
if self
is of variant ExportDefaultDecl
, and None
otherwise.
sourcepub fn is_export_default_expr(&self) -> bool
pub fn is_export_default_expr(&self) -> bool
Returns true
if self
is of variant ExportDefaultExpr
.
sourcepub fn as_export_default_expr(&self) -> Option<&ExportDefaultExpr>
pub fn as_export_default_expr(&self) -> Option<&ExportDefaultExpr>
Returns Some
if self
is a reference of variant ExportDefaultExpr
, and None
otherwise.
sourcepub fn as_mut_export_default_expr(&mut self) -> Option<&mut ExportDefaultExpr>
pub fn as_mut_export_default_expr(&mut self) -> Option<&mut ExportDefaultExpr>
Returns Some
if self
is a mutable reference of variant ExportDefaultExpr
, and None
otherwise.
sourcepub fn expect_export_default_expr(self) -> ExportDefaultExprwhere
Self: Debug,
pub fn expect_export_default_expr(self) -> ExportDefaultExprwhere
Self: Debug,
Unwraps the value, yielding the content of ExportDefaultExpr
.
Panics
Panics if the value is not ExportDefaultExpr
, with a panic message including the content of self
.
sourcepub fn export_default_expr(self) -> Option<ExportDefaultExpr>
pub fn export_default_expr(self) -> Option<ExportDefaultExpr>
Returns Some
if self
is of variant ExportDefaultExpr
, and None
otherwise.
sourcepub fn is_export_all(&self) -> bool
pub fn is_export_all(&self) -> bool
Returns true
if self
is of variant ExportAll
.
sourcepub fn as_export_all(&self) -> Option<&ExportAll>
pub fn as_export_all(&self) -> Option<&ExportAll>
Returns Some
if self
is a reference of variant ExportAll
, and None
otherwise.
sourcepub fn as_mut_export_all(&mut self) -> Option<&mut ExportAll>
pub fn as_mut_export_all(&mut self) -> Option<&mut ExportAll>
Returns Some
if self
is a mutable reference of variant ExportAll
, and None
otherwise.
sourcepub fn expect_export_all(self) -> ExportAllwhere
Self: Debug,
pub fn expect_export_all(self) -> ExportAllwhere
Self: Debug,
sourcepub fn export_all(self) -> Option<ExportAll>
pub fn export_all(self) -> Option<ExportAll>
Returns Some
if self
is of variant ExportAll
, and None
otherwise.
sourcepub fn is_ts_import_equals(&self) -> bool
pub fn is_ts_import_equals(&self) -> bool
Returns true
if self
is of variant TsImportEquals
.
sourcepub fn as_ts_import_equals(&self) -> Option<&Box<TsImportEqualsDecl>>
pub fn as_ts_import_equals(&self) -> Option<&Box<TsImportEqualsDecl>>
Returns Some
if self
is a reference of variant TsImportEquals
, and None
otherwise.
sourcepub fn as_mut_ts_import_equals(
&mut self
) -> Option<&mut Box<TsImportEqualsDecl>>
pub fn as_mut_ts_import_equals(
&mut self
) -> Option<&mut Box<TsImportEqualsDecl>>
Returns Some
if self
is a mutable reference of variant TsImportEquals
, and None
otherwise.
sourcepub fn expect_ts_import_equals(self) -> Box<TsImportEqualsDecl>where
Self: Debug,
pub fn expect_ts_import_equals(self) -> Box<TsImportEqualsDecl>where
Self: Debug,
Unwraps the value, yielding the content of TsImportEquals
.
Panics
Panics if the value is not TsImportEquals
, with a panic message including the content of self
.
sourcepub fn ts_import_equals(self) -> Option<Box<TsImportEqualsDecl>>
pub fn ts_import_equals(self) -> Option<Box<TsImportEqualsDecl>>
Returns Some
if self
is of variant TsImportEquals
, and None
otherwise.
sourcepub fn is_ts_export_assignment(&self) -> bool
pub fn is_ts_export_assignment(&self) -> bool
Returns true
if self
is of variant TsExportAssignment
.
sourcepub fn as_ts_export_assignment(&self) -> Option<&TsExportAssignment>
pub fn as_ts_export_assignment(&self) -> Option<&TsExportAssignment>
Returns Some
if self
is a reference of variant TsExportAssignment
, and None
otherwise.
sourcepub fn as_mut_ts_export_assignment(&mut self) -> Option<&mut TsExportAssignment>
pub fn as_mut_ts_export_assignment(&mut self) -> Option<&mut TsExportAssignment>
Returns Some
if self
is a mutable reference of variant TsExportAssignment
, and None
otherwise.
sourcepub fn expect_ts_export_assignment(self) -> TsExportAssignmentwhere
Self: Debug,
pub fn expect_ts_export_assignment(self) -> TsExportAssignmentwhere
Self: Debug,
Unwraps the value, yielding the content of TsExportAssignment
.
Panics
Panics if the value is not TsExportAssignment
, with a panic message including the content of self
.
sourcepub fn ts_export_assignment(self) -> Option<TsExportAssignment>
pub fn ts_export_assignment(self) -> Option<TsExportAssignment>
Returns Some
if self
is of variant TsExportAssignment
, and None
otherwise.
sourcepub fn is_ts_namespace_export(&self) -> bool
pub fn is_ts_namespace_export(&self) -> bool
Returns true
if self
is of variant TsNamespaceExport
.
sourcepub fn as_ts_namespace_export(&self) -> Option<&TsNamespaceExportDecl>
pub fn as_ts_namespace_export(&self) -> Option<&TsNamespaceExportDecl>
Returns Some
if self
is a reference of variant TsNamespaceExport
, and None
otherwise.
sourcepub fn as_mut_ts_namespace_export(
&mut self
) -> Option<&mut TsNamespaceExportDecl>
pub fn as_mut_ts_namespace_export(
&mut self
) -> Option<&mut TsNamespaceExportDecl>
Returns Some
if self
is a mutable reference of variant TsNamespaceExport
, and None
otherwise.
sourcepub fn expect_ts_namespace_export(self) -> TsNamespaceExportDeclwhere
Self: Debug,
pub fn expect_ts_namespace_export(self) -> TsNamespaceExportDeclwhere
Self: Debug,
Unwraps the value, yielding the content of TsNamespaceExport
.
Panics
Panics if the value is not TsNamespaceExport
, with a panic message including the content of self
.
sourcepub fn ts_namespace_export(self) -> Option<TsNamespaceExportDecl>
pub fn ts_namespace_export(self) -> Option<TsNamespaceExportDecl>
Returns Some
if self
is of variant TsNamespaceExport
, and None
otherwise.
Trait Implementations
sourceimpl Clone for ModuleDecl
impl Clone for ModuleDecl
sourcefn clone(&self) -> ModuleDecl
fn clone(&self) -> ModuleDecl
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more