Enum rustc::mir::visit::LvalueContext [] [src]

pub enum LvalueContext {
    Store,
    Call,
    Drop,
    Inspect,
    Borrow {
        region: Region,
        kind: BorrowKind,
    },
    Slice {
        from_start: usize,
        from_end: usize,
    },
    Projection,
    Consume,
}
Unstable (rustc_private)

Variants

Store
Unstable (rustc_private)
Call
Unstable (rustc_private)
Drop
Unstable (rustc_private)
Inspect
Unstable (rustc_private)
Borrow
Unstable (rustc_private)

Fields

region: Region
Unstable (rustc_private)
kind: BorrowKind
Unstable (rustc_private)
Slice
Unstable (rustc_private)

Fields

from_start: usize
Unstable (rustc_private)
from_end: usize
Unstable (rustc_private)
Projection
Unstable (rustc_private)
Consume
Unstable (rustc_private)

Trait Implementations

Derived Implementations

impl Debug for LvalueContext
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for LvalueContext
[src]

fn clone(&self) -> LvalueContext

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for LvalueContext
[src]