[][src]Struct rslint_parser::ast::TryStmt

pub struct TryStmt { /* fields omitted */ }

Implementations

impl TryStmt[src]

pub fn try_token(&self) -> Option<SyntaxToken>[src]

pub fn test(&self) -> Option<BlockStmt>[src]

pub fn handler(&self) -> Option<CatchClause>[src]

pub fn finalizer(&self) -> Option<Finalizer>[src]

Trait Implementations

impl AstNode for TryStmt[src]

impl Clone for TryStmt[src]

impl Debug for TryStmt[src]

impl Display for TryStmt[src]

impl Eq for TryStmt[src]

impl From<TryStmt> for Stmt[src]

impl Hash for TryStmt[src]

impl PartialEq<TryStmt> for TryStmt[src]

impl StructuralEq 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> Erasable 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> ToString for T where
    T: Display + ?Sized
[src]

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.