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 makeb
and (transitively)c
possible borrowers ofa
.