Crate wasmprinter
source ·Expand description
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§
- Configuration used to print a WebAssembly binary.
- An adapter between the
std::fmt::Write
trait andPrint
. - An adapter between the
std::io::Write
trait andPrint
. - An adapter between the
std::fmt::Write
trait andtermcolor::WriteColor
.
Traits§
- Trait used to print WebAssembly modules in this crate.
Functions§
- Prints an in-memory
wasm
binary blob into an in-memoryString
which is its textual representation. - Reads a WebAssembly
file
from the filesystem and then prints it into an in-memoryString
.