Trait ModuleItemLike
pub trait ModuleItemLike: StmtLike {
// Provided methods
fn try_into_module_decl(self) -> Result<ModuleDecl, Self> { ... }
fn try_from_module_decl(decl: ModuleDecl) -> Result<Self, ModuleDecl> { ... }
}
Available on crate features
__ecma
and __utils
only.Provided Methods§
fn try_into_module_decl(self) -> Result<ModuleDecl, Self>
fn try_from_module_decl(decl: ModuleDecl) -> Result<Self, ModuleDecl>
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.