Struct rustc_mir::dataflow::move_paths::MoveOut[][src]

pub struct MoveOut {
    pub path: MovePathIndex,
    pub source: Location,
}
🔬 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?

MoveOut represents a point in a program that moves out of some L-value; i.e., "creates" uninitialized memory.

With respect to dataflow analysis:

Fields

🔬 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?

path being moved

🔬 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?

location of move

Trait Implementations

impl Copy for MoveOut
[src]

impl Clone for MoveOut
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MoveOut
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for MoveOut

impl Sync for MoveOut