mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-07 05:08:19 +00:00
8 lines
201 B
Rust
8 lines
201 B
Rust
struct Namespace {}
|
|
|
|
impl Namespace {
|
|
fn new() -> Self;
|
|
fn insert<S, E>(&mut self, name: S, export: E) -> Option<Box<dyn IsExport + Send>>;
|
|
fn contains_key<S>(&mut self, key: S) -> bool;
|
|
}
|