Jake Goulding
Jake Goulding
> Why not `let _ = foo().await;`? I think the point is that if the API evolves (goes from `fn() -> Result` to `async fn() -> Result`) then the previous...
> Won't there be some special `unwarp` for `Result` once `!` geta stabilized? [`Result::into_ok`](https://doc.rust-lang.org/std/result/enum.Result.html#method.into_ok)
This may be beyond Vue — I have a React setup and am seeing something similar: ```jsx import image from "./assets/test-pattern.jpg"; console.log(image) import * as styles from "./TestPattern.module.css"; const TestPattern:...
Ah, I found https://github.com/parcel-bundler/parcel/issues/10116#issuecomment-2738327855 (where this issue came from!), which suggests changing the import to use `url:` in import statements. Sorry for the noise.
Does [`report`](https://docs.rs/snafu/latest/snafu/attr.report.html) or [`Report`](https://docs.rs/snafu/latest/snafu/struct.Report.html) not work for you?
> I'm not sure if developers always remember How would this be different from remembering to use the alternate display flag? > which I guess should be a good practice...
> utilized in many other error handling libraries I believe the big difference is that these other libraries (and I'm not an expert on them) don't actually give you control...
> simply adding a method to the `core::result::Result` type As currently described, you can't do this because `core` doesn't know about `Box`. Focusing on the original problem, some related prior...
> this knob is not saved when sharing via link I think that's fine for now. Similarly, the "backtrace" configuration is not added as a query parameter. > I suppose...
Thanks for your patience! The code looks good, but I did pull it down and make some small tweaks, as well as rebasing it to address some conflicts. I then...