mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-08 13:48:26 +00:00
9 lines
219 B
Rust
9 lines
219 B
Rust
struct Artifact {}
|
|
|
|
impl Artifact {
|
|
unsafe fn deserialize(bytes: &[u8]) -> Result<Self, Error>;
|
|
fn info(&self) -> &ModuleInfo;
|
|
fn serialize(&self) -> Result<Vec<u8>, Error>;
|
|
fn module(self) -> Module;
|
|
}
|