Struct rustc_typeck::check::generator_interior::drop_ranges::record_consumed_borrow::ExprUseDelegate
source · [−]struct ExprUseDelegate<'tcx> {
tcx: TyCtxt<'tcx>,
param_env: ParamEnv<'tcx>,
places: ConsumedAndBorrowedPlaces,
}
Expand description
Works with ExprUseVisitor to find interesting values for the drop range analysis.
Interesting values are those that are either dropped or borrowed. For dropped values, we also record the parent expression, which is the point where the drop actually takes place.
Fields
tcx: TyCtxt<'tcx>
param_env: ParamEnv<'tcx>
places: ConsumedAndBorrowedPlaces
Implementations
sourceimpl<'tcx> ExprUseDelegate<'tcx>
impl<'tcx> ExprUseDelegate<'tcx>
fn new(tcx: TyCtxt<'tcx>, param_env: ParamEnv<'tcx>) -> Self
fn consume_body(
&mut self,
fcx: &FnCtxt<'_, 'tcx>,
def_id: DefId,
body: &'tcx Body<'tcx>
)
fn mark_consumed(&mut self, consumer: HirId, target: TrackedValue)
fn borrow_place(&mut self, place_with_id: &PlaceWithHirId<'tcx>)
Trait Implementations
sourceimpl<'tcx> Delegate<'tcx> for ExprUseDelegate<'tcx>
impl<'tcx> Delegate<'tcx> for ExprUseDelegate<'tcx>
sourcefn consume(&mut self, place_with_id: &PlaceWithHirId<'tcx>, diag_expr_id: HirId)
fn consume(&mut self, place_with_id: &PlaceWithHirId<'tcx>, diag_expr_id: HirId)
The value found at place
is moved, depending
on mode
. Where diag_expr_id
is the id used for diagnostics for place
. Read more
sourcefn borrow(
&mut self,
place_with_id: &PlaceWithHirId<'tcx>,
diag_expr_id: HirId,
bk: BorrowKind
)
fn borrow(
&mut self,
place_with_id: &PlaceWithHirId<'tcx>,
diag_expr_id: HirId,
bk: BorrowKind
)
The value found at place
is being borrowed with kind bk
.
diag_expr_id
is the id used for diagnostics (see consume
for more details). Read more
sourcefn copy(&mut self, place_with_id: &PlaceWithHirId<'tcx>, _diag_expr_id: HirId)
fn copy(&mut self, place_with_id: &PlaceWithHirId<'tcx>, _diag_expr_id: HirId)
The value found at place
is being copied.
diag_expr_id
is the id used for diagnostics (see consume
for more details). Read more
sourcefn mutate(&mut self, assignee_place: &PlaceWithHirId<'tcx>, diag_expr_id: HirId)
fn mutate(&mut self, assignee_place: &PlaceWithHirId<'tcx>, diag_expr_id: HirId)
The path at assignee_place
is being assigned to.
diag_expr_id
is the id used for diagnostics (see consume
for more details). Read more
sourcefn bind(&mut self, binding_place: &PlaceWithHirId<'tcx>, diag_expr_id: HirId)
fn bind(&mut self, binding_place: &PlaceWithHirId<'tcx>, diag_expr_id: HirId)
The path at binding_place
is a binding that is being initialized. Read more
sourcefn fake_read(
&mut self,
place_with_id: &PlaceWithHirId<'tcx>,
cause: FakeReadCause,
diag_expr_id: HirId
)
fn fake_read(
&mut self,
place_with_id: &PlaceWithHirId<'tcx>,
cause: FakeReadCause,
diag_expr_id: HirId
)
The place
should be a fake read because of specified cause
.
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for ExprUseDelegate<'tcx>
impl<'tcx> !Send for ExprUseDelegate<'tcx>
impl<'tcx> !Sync for ExprUseDelegate<'tcx>
impl<'tcx> Unpin for ExprUseDelegate<'tcx>
impl<'tcx> !UnwindSafe for ExprUseDelegate<'tcx>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<'a, T> Captures<'a> for T where
T: ?Sized,
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 112 bytes