[][src]Struct binjs_es6::ast::CatchClause

pub struct CatchClause {
    pub binding_scope: AssertedBoundNamesScope,
    pub binding: Binding,
    pub body: Block,
}

Implementation of interface CatchClause.

Fields

binding_scope: AssertedBoundNamesScopebinding: Bindingbody: Block

Trait Implementations

impl Clone for CatchClause[src]

impl Debug for CatchClause[src]

impl Default for CatchClause[src]

impl<R> Deserialization<CatchClause> for Deserializer<R> where
    R: TokenReader
[src]

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

impl<'a> From<&'a mut CatchClause> for ViewMutCatchClause<'a>[src]

impl<R> InnerDeserialization<CatchClause> for Deserializer<R> where
    R: TokenReader
[src]

impl Node for CatchClause[src]

Make it possible to downcast/upcast between CatchClause and binjs_shared::ast::Node.

fn name(&self) -> &'static str[src]

The name of this node. Used mostly for debugging purposes.

impl PartialEq<CatchClause> for CatchClause[src]

impl<W> Serialization<CatchClause> for Serializer<W> where
    W: TokenWriter
[src]

impl Serialize for CatchClause[src]

impl StructuralPartialEq for CatchClause[src]

impl<'a> Walker<'a> for CatchClause[src]

type Output = CatchClause

Auto Trait Implementations

impl !RefUnwindSafe for CatchClause

impl !Send for CatchClause

impl !Sync for CatchClause

impl Unpin for CatchClause

impl UnwindSafe for CatchClause

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> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]