[][src]Crate wasmprinter

A crate to convert a WebAssembly binary to its textual representation in the WebAssembly Text Format (WAT).

This crate is intended for developer toolchains and debugging, supporting human-readable versions of a wasm binary. This can also be useful when developing wasm toolchain support in Rust for various purposes like testing and debugging and such.

Structs

Printer

Context used for printing a WebAssembly binary.

Functions

print_bytes

Prints an in-memory wasm binary blob into an in-memory String which is its textual representation.

print_file

Reads a WebAssembly file from the filesystem and then prints it into an in-memory String.