Enum rustc::ty::BorrowKind
[−]
[src]
pub enum BorrowKind { ImmBorrow, UniqueImmBorrow, MutBorrow, }
rustc_private
)Variants
ImmBorrow
rustc_private
)Data must be immutable and is aliasable.
UniqueImmBorrow
rustc_private
)Data must be immutable but not aliasable. This kind of borrow cannot currently be expressed by the user and is used only in implicit closure bindings. It is needed when you the closure is borrowing or mutating a mutable referent, e.g.:
let x: &mut isize = ...; let y = || *x += 5;
If we were to try to translate this closure into a more explicit form, we'd encounter an error with the code as written:
struct Env { x: & &mut isize } let x: &mut isize = ...; let y = (&mut Env { &x }, fn_ptr); // Closure is pair of env and fn fn fn_ptr(env: &mut Env) { **env.x += 5; }
This is then illegal because you cannot mutate a &mut
found
in an aliasable location. To solve, you'd have to translate with
an &mut
borrow:
struct Env { x: & &mut isize } let x: &mut isize = ...; let y = (&mut Env { &mut x }, fn_ptr); // changed from &x to &mut x fn fn_ptr(env: &mut Env) { **env.x += 5; }
Now the assignment to **env.x
is legal, but creating a
mutable pointer to x
is not because x
is not mutable. We
could fix this by declaring x
as let mut x
. This is ok in
user code, if awkward, but extra weird for closures, since the
borrow is hidden.
So we introduce a "unique imm" borrow -- the referent is immutable, but not aliasable. This solves the problem. For simplicity, we don't give users the way to express this borrow, it's just used when translating closures.
MutBorrow
rustc_private
)Data is mutable and not aliasable.
Methods
impl BorrowKind
[src]
fn from_mutbl(m: Mutability) -> BorrowKind
fn to_mutbl_lossy(self) -> Mutability
rustc_private
)Returns a mutability m
such that an &m T
pointer could be used to obtain this borrow
kind. Because borrow kinds are richer than mutabilities, we sometimes have to pick a
mutability that is stronger than necessary so that it at least would permit the borrow in
question.
fn to_user_str(&self) -> &'static str
Trait Implementations
Derived Implementations
impl Copy for BorrowKind
[src]
impl Decodable for BorrowKind
[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<BorrowKind, __D::Error>
impl Encodable for BorrowKind
[src]
impl Debug for BorrowKind
[src]
impl Hash for BorrowKind
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0
Feeds a slice of this type into the state provided.
impl Eq for BorrowKind
[src]
impl PartialEq for BorrowKind
[src]
fn eq(&self, __arg_0: &BorrowKind) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0
This method tests for !=
.
impl Clone for BorrowKind
[src]
fn clone(&self) -> BorrowKind
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more