terror.rs - wasm-runtime - A wasm runtime
HTML git clone https://git.parazyd.org/wasm-runtime
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
terror.rs (137B)
---
1 #[derive(Debug, thiserror::Error)]
2 pub enum RuntimeError {
3 #[error("Cannot write data on module: Out of memory")]
4 OutOfMemory,
5 }