use-wasm-value 0.0.1

WebAssembly value type parsing, rendering, binary code, and classification primitives.
Documentation
  • Coverage
  • 100%
    17 out of 17 items documented1 out of 8 items with examples
  • Size
  • Source code size: 7.96 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 454.99 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 2s Average build duration of successful builds.
  • all releases: 2s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • RustUse/use-wasm
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

use-wasm-value

WebAssembly value type primitives for RustUse. This crate models core scalar, vector, and reference value type labels with parsing and display helpers.

Example

use use_wasm_value::WasmValueType;

let value_type: WasmValueType = "i64".parse().expect("known value type");

assert!(value_type.is_numeric());
assert_eq!(value_type.to_string(), "i64");

Scope

  • Core value type labels and byte codes.
  • Basic numeric/reference/vector classification.

Non-goals

  • No runtime values.
  • No instruction semantics.

License

Licensed under either of the following, at your option:

  • Apache License, Version 2.0
  • MIT license