Files
wasmer/lib/deprecated/runtime-core/doc/old-api/artifact.rs

8 lines
181 B
Rust

struct Artifact {}
impl Artifact {
fn deserialize(bytes: &[u8]) -> Result<Self, Error>;
fn info(&self) -> &ModuleInfo;
fn serialize(&self) -> Result<Vec<u8>, Error>;
}