swc_ecma_utils

Trait StmtLike

Source
pub trait StmtLike:
    Sized
    + 'static
    + Send
    + Sync {
    // Required methods
    fn try_into_stmt(self) -> Result<Stmt, Self>;
    fn as_stmt(&self) -> Option<&Stmt>;
    fn as_stmt_mut(&mut self) -> Option<&mut Stmt>;
    fn from_stmt(stmt: Stmt) -> Self;
}

Required Methods§

Source

fn try_into_stmt(self) -> Result<Stmt, Self>

Source

fn as_stmt(&self) -> Option<&Stmt>

Source

fn as_stmt_mut(&mut self) -> Option<&mut Stmt>

Source

fn from_stmt(stmt: Stmt) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl StmtLike for ModuleItem

Source§

fn try_into_stmt(self) -> Result<Stmt, Self>

Source§

fn as_stmt(&self) -> Option<&Stmt>

Source§

fn as_stmt_mut(&mut self) -> Option<&mut Stmt>

Source§

fn from_stmt(stmt: Stmt) -> Self

Source§

impl StmtLike for Stmt

Source§

fn try_into_stmt(self) -> Result<Stmt, Self>

Source§

fn as_stmt(&self) -> Option<&Stmt>

Source§

fn as_stmt_mut(&mut self) -> Option<&mut Stmt>

Source§

fn from_stmt(stmt: Stmt) -> Self

Implementors§