InteriorAssign trait { a := b }
Rust Internals [Unofficial]
May 10, 2026
emy:
>
> let mut num = Some(12);
> num := 13;
>
I am not proposing for this use case.
For completeness, the current way to do this would be:
num = Some(13)
Discussion in the ATmosphere