this post was submitted on 23 Jan 2026
26 points (100.0% liked)
Rust Programming
9105 readers
1 users here now
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I mean, I do have several years of experience, but I'm still curious to see what others think. ๐
Obviously, someone cares for these changes, otherwise they would not have been made.
But yeah, the larger headings seem like niche changes, which most devs will only see the advantages of indirectly, i.e. when a library makes use of it.
In terms of the stabilized APIs, .as_array() seems like it will come up at times, because you might have an API that demands an array (so with a fixed length, e.g.
[u32; 4]), but you only have a slice or aVec.And fmt::from_fn() seems like it could be really convenient when you need different string formatting for a type in one particular place.
From fn is great, and I think it will be bumping my msrv.