Module clippy_utils::mir::possible_borrower
source · Structs
Result of
PossibleBorrowerVisitor.Collects the possible borrowers of each local.
For example,
b = &a; c = &a; will make b and (transitively) c
possible borrowers of a.