snaggen@programming.dev to Rust@programming.dev · 6 months agoAnnouncing Rust 1.79.0blog.rust-lang.orgexternal-linkmessage-square3fedilinkarrow-up179cross-posted to: rust@lemmy.ml
arrow-up179external-linkAnnouncing Rust 1.79.0blog.rust-lang.orgsnaggen@programming.dev to Rust@programming.dev · 6 months agomessage-square3fedilinkcross-posted to: rust@lemmy.ml
minus-squareBatmanAoD@programming.devlinkfedilinkarrow-up10·edit-26 months agoHow does the const { None } example type-inference work? The size of the option type can’t be known without knowing the type of the Somevariant. Edit: aha, it doesn’t work as-is. It needs to infer the type of elements of foo from usage. https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=05a95c592626b6935ae812527aa6bbc6
How does the
const { None }
example type-inference work? The size of the option type can’t be known without knowing the type of theSome
variant.Edit: aha, it doesn’t work as-is. It needs to infer the type of elements of
foo
from usage. https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=05a95c592626b6935ae812527aa6bbc6