[][src]Struct swc_ecma_ast::TsImportEqualsDecl

pub struct TsImportEqualsDecl {
    pub span: Span,
    pub declare: bool,
    pub is_export: bool,
    pub id: Ident,
    pub module_ref: TsModuleRef,
}

Fields

span: Spandeclare: boolis_export: boolid: Identmodule_ref: TsModuleRef

Trait Implementations

impl AstNode for TsImportEqualsDecl[src]

impl Clone for TsImportEqualsDecl[src]

impl Debug for TsImportEqualsDecl[src]

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

impl Eq for TsImportEqualsDecl[src]

impl EqIgnoreSpan for TsImportEqualsDecl[src]

impl From<TsImportEqualsDecl> for ModuleDecl[src]

impl Hash for TsImportEqualsDecl[src]

impl PartialEq<TsImportEqualsDecl> for TsImportEqualsDecl[src]

impl Serialize for TsImportEqualsDecl[src]

impl Spanned for TsImportEqualsDecl[src]

impl StructuralEq for TsImportEqualsDecl[src]

impl StructuralPartialEq for TsImportEqualsDecl[src]

Auto Trait Implementations

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.