Open
Conversation
traviscross
reviewed
Mar 20, 2025
src/expressions.md
Outdated
| * [Fields][field]: this evaluates the subexpression in a mutable place expression context. | ||
| * [Dereferences][deref] of a `*mut T` pointer. | ||
| * Dereference of a variable, or field of a variable, with type `&mut T`. | ||
| * Dereference of a movable place, with type `&mut T`. This includes variables and their fields, as well as temporaries. |
Contributor
There was a problem hiding this comment.
Suggested change
| * Dereference of a movable place, with type `&mut T`. This includes variables and their fields, as well as temporaries. | |
| * Dereference of a movable place with type `&mut T`. This includes variables and their fields, as well as temporaries. |
Contributor
There was a problem hiding this comment.
We could add an internal link on "movable place" also.
traviscross
approved these changes
Mar 20, 2025
Contributor
Author
|
https://play.rust-lang.org/?version=stable&mode=debug&edition=2024 I checked something and this might be a bit trickerier. According to [expr.move.movable-place], |
Contributor
Author
|
@rustbot author |
This comment has been minimized.
This comment has been minimized.
c732fa0 to
9016205
Compare
Collaborator
|
This PR was rebased onto a different master commit. Here's a range-diff highlighting what actually changed. Rebasing is a normal part of keeping PRs up to date, so no action is needed—this note is just to help reviewers. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This indicates that any movable place expression of type
&mut Tcan be dereferenced to yield a mutable place.Presently the rule only lists variables and fields of variables. However, if a
&mut Tis contained within a movableBox, it is also valid to deref the&mut Tand use the resulting place mutably, even if theBoxwas immutable. See the following playgrounds:BoxvariableBoxvariable (correctly) does not yield a mutable place.