Abiria

Results 29 comments of Abiria
trafficstars

and this is a duplicate to #109.

(μ‹€μ œ 적용 ν™”λ©΄μž…λ‹ˆλ‹€) * Google Chrome ![image](https://user-images.githubusercontent.com/72962900/151503011-496923d1-bba0-483a-a009-c94000e7b7bb.png) ![image](https://user-images.githubusercontent.com/72962900/151503139-e63d6949-585a-4e80-8506-7614da15a362.png) * Chromium ![image](https://user-images.githubusercontent.com/72962900/151503272-526c83ab-6f65-4373-a48c-02371c6b77d7.png)

it looks like there is a similar or related issue: #1939

I got the same error on Arch Linux `(5.17.9-arch1-1)`

`set_xxx()` methods are quite useful for inline mutation of the builder, particularly within loops(including `fold` iterator). ```rs let mut report_builder = Report::build(...); for my_error in errors { report_builder.add_label(Label::new(...)); } report_builder.finish();...

You should manually implement `Diagnostic` in this case I guess?

It would be great if the macro could automatically support [LabeledSpan](https://docs.rs/miette/latest/miette/struct.LabeledSpan.html#), as demonstrated below: ```rs #[derive(Error, Debug, Diagnostic)] #[error("oops!")] #[diagnostic( code(oops::my::bad), url(docsrs), help("try doing it better next time?") )] struct...

You can use [this code here](https://github.com/vitejs/vite/discussions/1791#discussioncomment-321046) too