envoy-wasm-rust-sdk
envoy-wasm-rust-sdk copied to clipboard
provide support for manually creating backtrace of an error
Context
-
Rust
doesn't support backtraces onwasm32
(neither is backtrace package)
Expected
- find a way for user to manually attach location to an error
- use
file!()
andline!()
macros to get the location where an error is created - probably, use an error handling package like anyhow that allows to associate a free-form context with an error
- use