wasmer/utils/native/
mod.rs

1/// Traits and implementations used to convert between native values and WebAssembly ones.
2pub(crate) mod convert;
3pub use convert::*;
4
5/// Trait to interact with native functions.
6pub(crate) mod typed_func;
7pub use typed_func::*;