Is there something similar to this for rust wasm?
I have some frontend use cases for rust that I just ended up rewriting in typescript because transferring and loading the wasm rust blob is more expensive than running the program.
I imagine wasm-conscious optimizations would look a lot like targeting microcontrollers, but with weird escape hatches to high-level browser apis.
I find the RustWasm book has a section on profiling throughput and latency performance for Rust Wasm: https://rustwasm.github.io/book/reference/time-profiling.htm.... Hope it helps.
Here's something I found: https://github.com/rustwasm/book
Though it's archived and seems to be abandoned. And there doesn't seem to be a replacement for it...
https://blog.rust-lang.org/inside-rust/2025/07/21/sunsetting...