Expand description
WASM-boundary error types.
WasmError aggregates errors from all lower layers. Because
wasm-bindgen provides a blanket impl<E: Error> From<E> for JsError,
any WasmError can be converted to JsError automatically via ?.
Enums§
- Wasm
Error - Errors that can occur in WASM-exposed operations.
Functions§
- validate_
finite - Validate that a
f64value is finite (not NaN or infinite). - validate_
positive - Validate that a
f64value is finite and strictly positive.