struct MoveDataBuilder<'a, 'tcx, F> {
body: &'a Body<'tcx>,
loc: Location,
tcx: TyCtxt<'tcx>,
data: MoveData<'tcx>,
filter: F,
}Fields§
§body: &'a Body<'tcx>§loc: Location§tcx: TyCtxt<'tcx>§data: MoveData<'tcx>§filter: FImplementations§
Source§impl<'a, 'tcx, F: Fn(Ty<'tcx>) -> bool> MoveDataBuilder<'a, 'tcx, F>
impl<'a, 'tcx, F: Fn(Ty<'tcx>) -> bool> MoveDataBuilder<'a, 'tcx, F>
Sourcefn move_path_for<G>(&mut self, place: Place<'tcx>, on_move: G)where
G: FnMut(&mut Self, MovePathIndex),
fn move_path_for<G>(&mut self, place: Place<'tcx>, on_move: G)where
G: FnMut(&mut Self, MovePathIndex),
This creates a MovePath for a given place, calling on_move
if it can be moved from. If theres a union in the path, its
move place will be given to on_move. If there’s a subslice
projection, on_move will be called for each element.
NOTE: places behind references do not get a move path, which is problematic for borrowck.
Maybe we should have separate “borrowck” and “moveck” modes.
fn add_move_path( &mut self, base: MovePathIndex, elem: MoveSubPath, mk_place: impl FnOnce(TyCtxt<'tcx>) -> Place<'tcx>, ) -> MovePathIndex
fn create_move_path(&mut self, place: Place<'tcx>)
fn finalize(self) -> MoveData<'tcx>
Source§impl<'a, 'tcx, F: Fn(Ty<'tcx>) -> bool> MoveDataBuilder<'a, 'tcx, F>
impl<'a, 'tcx, F: Fn(Ty<'tcx>) -> bool> MoveDataBuilder<'a, 'tcx, F>
fn gather_args(&mut self)
fn gather_statement(&mut self, stmt: &Statement<'tcx>)
fn gather_rvalue(&mut self, rvalue: &Rvalue<'tcx>)
fn gather_terminator(&mut self, term: &Terminator<'tcx>)
fn gather_operand(&mut self, operand: &Operand<'tcx>)
fn gather_move(&mut self, place: Place<'tcx>)
fn record_move(&mut self, place: Place<'tcx>, path: MovePathIndex)
fn gather_init(&mut self, place: PlaceRef<'tcx>, kind: InitKind)
Auto Trait Implementations§
impl<'a, 'tcx, F> DynSend for MoveDataBuilder<'a, 'tcx, F>where
F: DynSend,
impl<'a, 'tcx, F> DynSync for MoveDataBuilder<'a, 'tcx, F>where
F: DynSync,
impl<'a, 'tcx, F> Freeze for MoveDataBuilder<'a, 'tcx, F>where
F: Freeze,
impl<'a, 'tcx, F> !RefUnwindSafe for MoveDataBuilder<'a, 'tcx, F>
impl<'a, 'tcx, F> !Send for MoveDataBuilder<'a, 'tcx, F>
impl<'a, 'tcx, F> !Sync for MoveDataBuilder<'a, 'tcx, F>
impl<'a, 'tcx, F> Unpin for MoveDataBuilder<'a, 'tcx, F>where
F: Unpin,
impl<'a, 'tcx, F> !UnwindSafe for MoveDataBuilder<'a, 'tcx, F>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<P> IntoQueryParam<P> for P
impl<P> IntoQueryParam<P> for P
fn into_query_param(self) -> P
Source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
Source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
Source§impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed, ) -> T
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.