Aurelia Molzer
Aurelia Molzer
From `image` we have on more example that started to produce this lint: ``` let mut colors = [[0; 3]; 4]; // … for i in 0..3 { colors[2][i] =...
You can `resize`, then write the result in a `SubImage` of the correct size. That makes it also possible to choose an arbitrary background. A generally useful function might be...
The use case is of course understandable, and I've considered the very same question for a strongly typed GPU pipeline. It seems to me to be more easily resolved if...
> Note: I don't really know a lot about animation formats, so I assumed that they have a constant frame rate in the sequence API. Is that assumption valid? I...
Yes of course that is possible. Several formats allow independent definitions of width and height even if their product is zero. The codecs etc. generally preserve that detail. And you...
In functionality it is similar to the situation of `idna`/`url`. We can not make it outright optional, it would greatly impede work on color fidelity of read and write and...
I mistakenly assumed that `slice::Chunks` would have these methods similar to `slice::Iter` have them. However, that is not the case. Implementing this would therefore require us to store another reference...
Seems not so popular and `std` hasn't added these implementations in 5 years. I'll leave it open as a reminder to do an ACP and PR to rustc but this...
I like that structure you sketch, I mainly moved the code examples because they were both _just_ showing the IO part. So do they fit? It was not easy to...
Updated to reflect the already completed changes of consolidating the table and undoing the removal of the initial example (until I've come with a better criteria for deciding on the...