wadec 0.0.1

A library for decoding WebAssembly modules.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod functype;
pub mod globaltype;
pub mod limits;
pub mod memtype;
pub mod reftype;
pub mod resulttype;
pub mod tabletype;
pub mod valtype;

pub use functype::DecodeFuncTypeError;
pub use globaltype::{DecodeGlobalTypeError, InvalidMutabilityByteError};
pub use limits::ParseLimitsError;
pub use memtype::DecodeMemoryTypeError;
pub use reftype::{DecodeRefTypeError, InvalidRefTypeMarkerError};
pub use resulttype::DecodeResultTypeError;
pub use tabletype::DecodeTableError;
pub use valtype::{DecodeValTypeError, InvalidValTypeMarkerError};