wasm-runtime

A wasm runtime
git clone https://git.parazyd.org/wasm-runtime
Log | Files | Refs | README | LICENSE

error.rs (137B)


      1 #[derive(Debug, thiserror::Error)]
      2 pub enum RuntimeError {
      3     #[error("Cannot write data on module: Out of memory")]
      4     OutOfMemory,
      5 }