pub trait StmtOrModuleItem: Send + Sync + Sized {
    // Required methods
    fn into_stmt(self) -> Result<Stmt, ModuleDecl>;
    fn as_stmt(&self) -> Result<&Stmt, &ModuleDecl>;
    fn as_stmt_mut(&mut self) -> Result<&mut Stmt, &mut ModuleDecl>;
    fn from_stmt(stmt: Stmt) -> Self;
    fn try_from_module_decl(decl: ModuleDecl) -> Result<Self, ModuleDecl>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl StmtOrModuleItem for ModuleItem

source§

impl StmtOrModuleItem for Stmt

Implementors§