Enum rustc_mir_dataflow::move_paths::IllegalMoveOriginKind [−][src]
pub enum IllegalMoveOriginKind<'tcx> {
BorrowedContent {
target_place: Place<'tcx>,
},
InteriorOfTypeWithDestructor {
container_ty: Ty<'tcx>,
},
InteriorOfSliceOrArray {
ty: Ty<'tcx>,
is_index: bool,
},
}
Variants
Illegal move due to attempt to move from behind a reference.
Fields of BorrowedContent
target_place: Place<'tcx>
The place the reference refers to: if erroneous code was trying to
move from (*x).f
this will be *x
.
Illegal move due to attempt to move from field of an ADT that
implements Drop
. Rust maintains invariant that all Drop
ADT’s remain fully-initialized so that user-defined destructor
can safely read from all of the ADT’s fields.
Fields of InteriorOfTypeWithDestructor
container_ty: Ty<'tcx>
Illegal move due to attempt to move out of a slice or array.
Trait Implementations
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for IllegalMoveOriginKind<'tcx>
impl<'tcx> !Send for IllegalMoveOriginKind<'tcx>
impl<'tcx> !Sync for IllegalMoveOriginKind<'tcx>
impl<'tcx> Unpin for IllegalMoveOriginKind<'tcx>
impl<'tcx> !UnwindSafe for IllegalMoveOriginKind<'tcx>
Blanket Implementations
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: 24 bytes
Size for each variant:
BorrowedContent
: 23 bytesInteriorOfTypeWithDestructor
: 15 bytesInteriorOfSliceOrArray
: 15 bytes