mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-08 13:48:26 +00:00
8 lines
165 B
Rust
8 lines
165 B
Rust
struct Namespace {}
|
|
|
|
impl Namespace {
|
|
fn new() -> Self;
|
|
fn insert<S, E>(&mut self, name: S, export: E);
|
|
fn contains_key<S>(&mut self, key: S) -> bool;
|
|
}
|