Eduardo Pinho

Results 343 comments of Eduardo Pinho

Thank you for reporting. That is a known situation which is being tracked in #200. If you or someone else can do the switch to `encoding_rs` while keeping support for...

I think we can optimize data set writing _and_ benefit from the existing API by producing an iterator of shallow tokens instead. It may require an extension to the dataset...

> In this issue, the problem isn't copying itself but excessive memory usage. > > Currently, if I have a 1GB object and pass it to this function, the peak...

Would you be able to use [`Infallible`](https://doc.rust-lang.org/stable/core/convert/enum.Infallible.html) instead of declaring `Inner`?

I'd favor `unwrap_report`, which is a pattern already seen in wasm bindgen with [`unwrap_throw`](https://docs.rs/wasm-bindgen/0.2.84/wasm_bindgen/trait.UnwrapThrowExt.html#method.unwrap_throw). `report` would work too, although this one does not convey so well the idea that it...

Those would be the two approaches that I know of as well. Perhaps there could be a way to automatically fill in `MetaError` upon context insertion, but it's worth pointing...

Just maybe. :) It is worth emphasizing that this is not meant to be a glossary of technical terms in Rust, but for recurrent expressions which ended up having some...

OK, if you make a pull request describing the current circumstances around those acronyms, I may be able to review it this month.

Well, since my comment on https://github.com/shepmaster/snafu/issues/446#issuecomment-2033809122, no one has expressed concern over this change, but this also doesn't mean that someone out there is depending on `Whatever` not having to...

It is unclear whether the lack of `Send + Sync` was just an oversight, or whether it was deliberately made in order to admit error types which might not be...