Structsยง
- Contains
Region ๐ - Result of
PossibleBorrowerVisitor
. - Collects the possible borrowers of each local. For example,
b = &a; c = &a;
will makeb
and (transitively)c
possible borrowers ofa
.
Functionsยง
- rvalue_
locals ๐
PossibleBorrowerVisitor
.b = &a; c = &a;
will make b
and (transitively) c
possible borrowers of a
.