78
Announcing Rust 1.79.0
(blog.rust-lang.org)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
I don't understand what the advantages of const expressions are.
Isn't
const { None }
the same as justNone
?const expressions are evaluated at compile time and can be used in locations where you would have to otherwise specify a literal (or something that amounts to a named literal like a const value).