Module rustc_borrowck::borrowck::move_data [−][src]
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Data structures used for tracking moves. Please see the extensive
comments in the section "Moves and initialization" in README.md
.
Re-exports
pub use self::MoveKind::*; |
use borrowck::*; |
use rustc::cfg; |
use rustc::middle::dataflow::DataFlowContext; |
use rustc::middle::dataflow::BitwiseOperator; |
use rustc::middle::dataflow::DataFlowOperator; |
use rustc::middle::dataflow::KillFrom; |
use rustc::middle::expr_use_visitor as euv; |
use rustc::middle::expr_use_visitor::MutateMode; |
use rustc::ty; |
use rustc::ty::TyCtxt; |
use rustc::util::nodemap::FxHashMap; |
use rustc::util::nodemap::FxHashSet; |
use std::cell::RefCell; |
use std::rc::Rc; |
use std::usize; |
use syntax_pos::Span; |
use rustc::hir; |
use rustc::hir::intravisit::IdRange; |
Structs
AssignDataFlowOperator |
[ Experimental ]
|
Assignment |
[ Experimental ]
|
FlowedMoveData |
[ Experimental ]
|
Move |
[ Experimental ]
|
MoveData |
[ Experimental ]
|
MoveDataFlowOperator |
[ Experimental ]
|
MoveIndex |
[ Experimental ] Index into |
MovePath |
[ Experimental ]
|
MovePathIndex |
[ Experimental ] Index into |
Enums
MoveKind |
[ Experimental ]
|
Constants
InvalidMoveIndex |
[ Experimental ]
|
InvalidMovePathIndex |
[ Experimental ]
|
Functions
loan_path_is_precise |
[ Experimental ]
|
Type Definitions
AssignDataFlow |
[ Experimental ]
|
MoveDataFlow |
[ Experimental ]
|