Module wasmer_runtime_fl::cache[][src]

Expand description

The cache module provides the common data structures used by compiler backends to allow serializing compiled wasm code to a binary format. The binary format can be persisted, and loaded to allow skipping compilation and fast startup.

Re-exports

pub use super::Backend;

Structs

Artifact are produced by caching, are serialized/deserialized to binaries, and contain module info, backend metadata, and compiled code.

Representation of a directory that contains compiled wasm artifacts.

The hash of a wasm module.

Traits

A generic cache for storing and loading compiled wasm modules.