[][src]Struct swc_ecma_ast::CatchClause

pub struct CatchClause {
    pub span: Span,
    pub param: Option<Pat>,
    pub body: BlockStmt,
}

Fields

span: Spanparam: Option<Pat>

es2019

The param is null if the catch binding is omitted. E.g., try { foo() } catch { bar() }

body: BlockStmt

Trait Implementations

impl AstNode for CatchClause[src]

impl Clone for CatchClause[src]

impl Debug for CatchClause[src]

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

impl PartialEq<CatchClause> for CatchClause[src]

impl Serialize for CatchClause[src]

impl Spanned for CatchClause[src]

impl StructuralPartialEq for CatchClause[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: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Erased for T

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.