mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-08 05:38:19 +00:00
8 lines
171 B
Rust
8 lines
171 B
Rust
struct WasmHash {}
|
|
|
|
impl WasmHash {
|
|
fn generate(wasm: &[u8]) -> Self;
|
|
fn encode(self) -> String;
|
|
fn decode(hex_str: &str) -> Result<Self, DeserializeError>;
|
|
}
|