Enum rustc_const_eval::interpret::Scalar [−][src]
Expand description
A Scalar
represents an immediate, primitive value existing outside of a
memory::Allocation
. It is in many ways like a small chunk of an Allocation
, up to 16 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
These variants would be private if there was a convenient way to achieve that in Rust.
Do not match on a Scalar
! Use the various to_*
methods instead.
Variants
Int(ScalarInt)
The raw bytes of a simple value.
Tuple Fields of Int
0: ScalarInt
A pointer into an Allocation
. An Allocation
in the memory
module has a list of
relocations, but a Scalar
is only large enough to contain one, so we just represent the
relocation and its associated offset together as a Pointer
here.
We also store the size of the pointer, such that a Scalar
always knows how big it is.
The size is always the pointer size of the current target, but this is not information
that we always have readily available.
Trait Implementations
Auto Trait Implementations
impl<Tag> RefUnwindSafe for Scalar<Tag> where
Tag: RefUnwindSafe,
impl<Tag> UnwindSafe for Scalar<Tag> where
Tag: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.