Struct swc_ecma_ast::IfStmt[][src]

pub struct IfStmt {
    pub span: Span,
    pub test: Box<Expr>,
    pub cons: Box<Stmt>,
    pub alt: Option<Box<Stmt>>,
}

Fields

span: Spantest: Box<Expr>cons: Box<Stmt>alt: Option<Box<Stmt>>

Trait Implementations

impl AstNode for IfStmt[src]

impl Clone for IfStmt[src]

impl Debug for IfStmt[src]

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

impl Eq for IfStmt[src]

impl EqIgnoreSpan for IfStmt[src]

impl From<IfStmt> for Stmt[src]

impl Hash for IfStmt[src]

impl PartialEq<IfStmt> for IfStmt[src]

impl Serialize for IfStmt[src]

impl Spanned for IfStmt[src]

impl StructuralEq for IfStmt[src]

impl StructuralPartialEq for IfStmt[src]

Auto Trait Implementations

impl RefUnwindSafe for IfStmt

impl Send for IfStmt

impl Sync for IfStmt

impl Unpin for IfStmt

impl UnwindSafe for IfStmt

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[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.