mirror of
https://github.com/fluencelabs/wasmer
synced 2025-05-07 16:22:14 +00:00
* Allow a module to have a different signature registry than the process-specific * Add core ability to build compiled code caches * Remove timing printouts * Serialize/Deserialize memories to reduce copies * Work more on api * Relocate local functions relatively before external functions * Fix incorrect definition in test * merge errors caused by merge * Fix emscripten compile * Fix review comments
15 lines
277 B
Rust
15 lines
277 B
Rust
mod boxed;
|
|
mod map;
|
|
mod slice;
|
|
|
|
pub use self::boxed::BoxedMap;
|
|
pub use self::map::{Iter, IterMut, Map};
|
|
pub use self::slice::SliceMap;
|
|
|
|
pub trait TypedIndex: Copy + Clone {
|
|
#[doc(hidden)]
|
|
fn new(index: usize) -> Self;
|
|
#[doc(hidden)]
|
|
fn index(&self) -> usize;
|
|
}
|