You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 3, 2020. It is now read-only.
Consider making variables immutable by default and add a mut keyword
This may not constitute a major semver change depending on the breaking impact
Static analysis should prevent using a value after it has been moved
Could start by not supporting moves if the static analysis isn't mature enough yet (this would mean non-copy types would always have to be passed by reference--not bad)
Automatic referencing/dereferencing
The text was updated successfully, but these errors were encountered:
Reference:
&Foo
Mutable reference:
&mut Foo
Move/Copy:
Foo
The data should be moved if type does not implement Copy, copy otherwise.
mut
keywordThe text was updated successfully, but these errors were encountered: