Aurelia Molzer

Results 457 comments of Aurelia Molzer

The traits `FromPrimitive` and `EncodableLayout` aren't implemented on these types, yet. It could just be those for a start and not the `ImageCanvas` extension. [This issue](https://github.com/python-pillow/Pillow/issues/1659) gives other precedent that...

How should this interact with `rust-toolchain.toml`? At the moment it is only selecting a toolchain from `rustup`. Should it become the default version for `update` and `generate-lockfile` as well?

If it is not possible to store and pass a meaningful *pointer* next to a 'noalias' tagged original pointer, maybe a way to handle this would be to utilize the...

Note that it does not hinge on the validator alone. Indeed, we can panic exit _within_ the mutator to trigger the same issue: ```rust // Setup code like above let...

The usage of a pattern in `if !let Foo::Bar(_) = self.integrity_policy` is extremely confusing to me. What if I don't ignore the content but use a name pattern? It wouldn't...

@KrishnaSannasi Indeed. Thanks.

Another crate that came up with the type itself independently (it leans primarily into the `Cell` parallels). Links: * https://github.com/kvverti/unaligned * https://crates.io/crates/unaligned ---- The reason for making it a wrapper...

* If there's no bound on `T` at all it doesn't sound like a very good fit for the library. Shouldn't `core` be able to perform this natively? * Which...

I can't reproduce the checkout problems with a clean clone of `master`. Could it be something with Windows git's automatic line ending conversion? Anyways, `ImageError` is not `Clone` since it...

> Yeah, well it's the usual problem - because io::Error derives absolutely nothing (a mistake in the standard library in my opinion), all wrapping errors can also not #[derive(...)] anything....