[][src]Module rustc::mir::interpret::value

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

Enums

ConstValue [
Experimental
]

Represents a constant value in Rust. Scalar and ScalarPair are optimizations which matches the LocalValue optimizations for easy conversions between Value and ConstValue.

Scalar [
Experimental
]

A Scalar represents an immediate, primitive value existing outside of a memory::Allocation. It is in many ways like a small chunk of a Allocation, up to 8 bytes in size. Like a range of bytes in an Allocation, a Scalar can either represent the raw bytes of a simple value or a pointer into another Allocation

ScalarMaybeUndef [
Experimental
]