swc_ecma_ast

Enum Decl

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

Variants§

§

Class(ClassDecl)

§

Fn(FnDecl)

§

Var(Box<VarDecl>)

§

TsInterface(Box<TsInterfaceDecl>)

§

TsTypeAlias(Box<TsTypeAliasDecl>)

§

TsEnum(Box<TsEnumDecl>)

§

TsModule(Box<TsModuleDecl>)

Implementations§

Source§

impl Decl

Source

pub const fn is_class(&self) -> bool

Returns true if self is of variant Class.

Source

pub fn as_class(&self) -> Option<&ClassDecl>

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

Source

pub fn as_mut_class(&mut self) -> Option<&mut ClassDecl>

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

Source

pub fn expect_class(self) -> ClassDecl
where Self: Debug,

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.

Source

pub fn class(self) -> Option<ClassDecl>

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

Source

pub const fn is_fn_decl(&self) -> bool

Returns true if self is of variant Fn.

Source

pub fn as_fn_decl(&self) -> Option<&FnDecl>

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

Source

pub fn as_mut_fn_decl(&mut self) -> Option<&mut FnDecl>

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

Source

pub fn expect_fn_decl(self) -> FnDecl
where Self: Debug,

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.

Source

pub fn fn_decl(self) -> Option<FnDecl>

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

Source

pub const fn is_var(&self) -> bool

Returns true if self is of variant Var.

Source

pub fn as_var(&self) -> Option<&Box<VarDecl>>

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

Source

pub fn as_mut_var(&mut self) -> Option<&mut Box<VarDecl>>

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

Source

pub fn expect_var(self) -> Box<VarDecl>
where Self: Debug,

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.

Source

pub fn var(self) -> Option<Box<VarDecl>>

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

Source

pub const fn is_ts_interface(&self) -> bool

Returns true if self is of variant TsInterface.

Source

pub fn as_ts_interface(&self) -> Option<&Box<TsInterfaceDecl>>

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

Source

pub fn as_mut_ts_interface(&mut self) -> Option<&mut Box<TsInterfaceDecl>>

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

Source

pub fn expect_ts_interface(self) -> Box<TsInterfaceDecl>
where Self: Debug,

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.

Source

pub fn ts_interface(self) -> Option<Box<TsInterfaceDecl>>

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

Source

pub const fn is_ts_type_alias(&self) -> bool

Returns true if self is of variant TsTypeAlias.

Source

pub fn as_ts_type_alias(&self) -> Option<&Box<TsTypeAliasDecl>>

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

Source

pub fn as_mut_ts_type_alias(&mut self) -> Option<&mut Box<TsTypeAliasDecl>>

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

Source

pub fn expect_ts_type_alias(self) -> Box<TsTypeAliasDecl>
where Self: Debug,

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.

Source

pub fn ts_type_alias(self) -> Option<Box<TsTypeAliasDecl>>

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

Source

pub const fn is_ts_enum(&self) -> bool

Returns true if self is of variant TsEnum.

Source

pub fn as_ts_enum(&self) -> Option<&Box<TsEnumDecl>>

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

Source

pub fn as_mut_ts_enum(&mut self) -> Option<&mut Box<TsEnumDecl>>

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

Source

pub fn expect_ts_enum(self) -> Box<TsEnumDecl>
where Self: Debug,

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.

Source

pub fn ts_enum(self) -> Option<Box<TsEnumDecl>>

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

Source

pub const fn is_ts_module(&self) -> bool

Returns true if self is of variant TsModule.

Source

pub fn as_ts_module(&self) -> Option<&Box<TsModuleDecl>>

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

Source

pub fn as_mut_ts_module(&mut self) -> Option<&mut Box<TsModuleDecl>>

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

Source

pub fn expect_ts_module(self) -> Box<TsModuleDecl>
where Self: Debug,

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.

Source

pub fn ts_module(self) -> Option<Box<TsModuleDecl>>

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

Trait Implementations§

Source§

impl Clone for Decl

Source§

fn clone(&self) -> Decl

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Decl

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Decl

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl EqIgnoreSpan for Decl

Source§

fn eq_ignore_span(&self, other: &Self) -> bool

Source§

impl From<Box<TsEnumDecl>> for Decl

Source§

fn from(v: Box<TsEnumDecl>) -> Self

Converts to this type from the input type.
Source§

impl From<Box<TsInterfaceDecl>> for Decl

Source§

fn from(v: Box<TsInterfaceDecl>) -> Self

Converts to this type from the input type.
Source§

impl From<Box<TsModuleDecl>> for Decl

Source§

fn from(v: Box<TsModuleDecl>) -> Self

Converts to this type from the input type.
Source§

impl From<Box<TsTypeAliasDecl>> for Decl

Source§

fn from(v: Box<TsTypeAliasDecl>) -> Self

Converts to this type from the input type.
Source§

impl From<Box<VarDecl>> for Decl

Source§

fn from(v: Box<VarDecl>) -> Self

Converts to this type from the input type.
Source§

impl From<ClassDecl> for Decl

Source§

fn from(v: ClassDecl) -> Self

Converts to this type from the input type.
Source§

impl From<Decl> for Stmt

Source§

fn from(v: Decl) -> Self

Converts to this type from the input type.
Source§

impl From<FnDecl> for Decl

Source§

fn from(v: FnDecl) -> Self

Converts to this type from the input type.
Source§

impl From<TsEnumDecl> for Decl

Source§

fn from(src: TsEnumDecl) -> Decl

Converts to this type from the input type.
Source§

impl From<TsInterfaceDecl> for Decl

Source§

fn from(src: TsInterfaceDecl) -> Decl

Converts to this type from the input type.
Source§

impl From<TsModuleDecl> for Decl

Source§

fn from(src: TsModuleDecl) -> Decl

Converts to this type from the input type.
Source§

impl From<TsTypeAliasDecl> for Decl

Source§

fn from(src: TsTypeAliasDecl) -> Decl

Converts to this type from the input type.
Source§

impl From<VarDecl> for Decl

Source§

fn from(src: VarDecl) -> Decl

Converts to this type from the input type.
Source§

impl Hash for Decl

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for Decl

Source§

fn eq(&self, other: &Decl) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for Decl

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Spanned for Decl

Source§

fn span(&self) -> Span

Get span of self.
Source§

fn span_lo(&self) -> BytePos

Source§

fn span_hi(&self) -> BytePos

Source§

impl Take for Decl

Source§

fn dummy() -> Self

Create a dummy value of this type.
Source§

fn take(&mut self) -> Self

Source§

fn map_with_mut<F>(&mut self, op: F)
where F: FnOnce(Self) -> Self,

Mutate self using op, which accepts owned data.
Source§

impl Eq for Decl

Source§

impl StructuralPartialEq for Decl

Auto Trait Implementations§

§

impl Freeze for Decl

§

impl RefUnwindSafe for Decl

§

impl Send for Decl

§

impl Sync for Decl

§

impl Unpin for Decl

§

impl UnwindSafe for Decl

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CallHasher for T
where T: Hash + ?Sized,

§

fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64
where H: Hash + ?Sized, B: BuildHasher,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> SpanExt for T
where T: Spanned,

Source§

fn is_synthesized(&self) -> bool

Source§

fn starts_on_new_line(&self, format: ListFormat) -> bool

Source§

fn comment_range(&self) -> Span

Gets a custom text range to use when emitting comments.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

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

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T