mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-07 05:08:19 +00:00
8 lines
181 B
Rust
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>;
|
|
}
|