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

Returns true if self is of variant Import.

Returns Some if self is a reference of variant Import, and None otherwise.

Returns Some if self is a mutable reference of variant Import, and None otherwise.

Unwraps the value, yielding the content of Import.

Panics

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

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

Returns true if self is of variant ExportDecl.

Returns Some if self is a reference of variant ExportDecl, and None otherwise.

Returns Some if self is a mutable reference of variant ExportDecl, and None otherwise.

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.

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

Returns true if self is of variant ExportNamed.

Returns Some if self is a reference of variant ExportNamed, and None otherwise.

Returns Some if self is a mutable reference of variant ExportNamed, and None otherwise.

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.

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

Returns true if self is of variant ExportDefaultDecl.

Returns Some if self is a reference of variant ExportDefaultDecl, and None otherwise.

Returns Some if self is a mutable reference of variant ExportDefaultDecl, and None otherwise.

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.

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

Returns true if self is of variant ExportDefaultExpr.

Returns Some if self is a reference of variant ExportDefaultExpr, and None otherwise.

Returns Some if self is a mutable reference of variant ExportDefaultExpr, and None otherwise.

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.

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

Returns true if self is of variant ExportAll.

Returns Some if self is a reference of variant ExportAll, and None otherwise.

Returns Some if self is a mutable reference of variant ExportAll, and None otherwise.

Unwraps the value, yielding the content of ExportAll.

Panics

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

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

Returns true if self is of variant TsImportEquals.

Returns Some if self is a reference of variant TsImportEquals, and None otherwise.

Returns Some if self is a mutable reference of variant TsImportEquals, and None otherwise.

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.

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

Returns true if self is of variant TsExportAssignment.

Returns Some if self is a reference of variant TsExportAssignment, and None otherwise.

Returns Some if self is a mutable reference of variant TsExportAssignment, and None otherwise.

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.

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

Returns true if self is of variant TsNamespaceExport.

Returns Some if self is a reference of variant TsNamespaceExport, and None otherwise.

Returns Some if self is a mutable reference of variant TsNamespaceExport, and None otherwise.

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.

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

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. Read more
Get span of self.
Create a dummy value of this type.
Mutate self using op, which accepts owned data.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more