diff options
Diffstat (limited to 'vendor/wasm-bindgen/src/convert/mod.rs')
-rw-r--r-- | vendor/wasm-bindgen/src/convert/mod.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/wasm-bindgen/src/convert/mod.rs b/vendor/wasm-bindgen/src/convert/mod.rs new file mode 100644 index 000000000..ce2c0b2c8 --- /dev/null +++ b/vendor/wasm-bindgen/src/convert/mod.rs @@ -0,0 +1,11 @@ +//! This is mostly an internal module, no stability guarantees are provided. Use +//! at your own risk. + +mod closures; +mod impls; +mod slices; +mod traits; + +pub use self::impls::*; +pub use self::slices::WasmSlice; +pub use self::traits::*; |