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> { ... }
}
Provided Methods§
fn try_into_module_decl(self) -> Result<ModuleDecl, Self>
fn try_from_module_decl(decl: ModuleDecl) -> Result<Self, ModuleDecl>
Object Safety§
This trait is not object safe.