New week, new Rust! What are you folks up to?
Working hard on https://crates.io/crates/typed_floats to make it worthy of the announcements category!
1 Like
I’m writing a decoder for Amiga ILBM (“IFF”) images. It’s mostly to help me learn Rust by attempting something more complex than the Mijnlieff solver I wrote a few months back, but when it's done I'll put it on GitHub for feedback.
1 Like
Just finished adding automatic derivation of the reset()
function (turns a T
to T::default
) in my async-dropper
crate -- took slightly longer than expected, but now people don't have to write the function if they don't have to.
Do wonder if it's worth contributing to Rust core -- it would be nice to have a function that resets any T
to T::default()
...
2 Likes