[][src]Struct swc_ecma_ast::TryStmt

pub struct TryStmt {
    pub span: Span,
    pub block: BlockStmt,
    pub handler: Option<CatchClause>,
    pub finalizer: Option<BlockStmt>,
}

Fields

span: Spanblock: BlockStmthandler: Option<CatchClause>finalizer: Option<BlockStmt>

Trait Implementations

impl AstNode for TryStmt[src]

impl Clone for TryStmt[src]

impl Debug for TryStmt[src]

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

impl From<TryStmt> for Stmt[src]

impl PartialEq<TryStmt> for TryStmt[src]

impl Serialize for TryStmt[src]

impl Spanned for TryStmt[src]

impl StructuralPartialEq for TryStmt[src]

Auto Trait Implementations

impl RefUnwindSafe for TryStmt

impl Send for TryStmt

impl Sync for TryStmt

impl Unpin for TryStmt

impl UnwindSafe for TryStmt

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.