Enum rustc_const_eval::interpret::LocalValue
source · pub enum LocalValue<Prov: Provenance = AllocId> {
Dead,
Live(Operand<Prov>),
}
Expand description
Current value of a local variable
Variants
Dead
This local is not currently alive, and cannot be used at all.
Live(Operand<Prov>)
A normal, live local.
Mostly for convenience, we re-use the Operand
type here.
This is an optimization over just always having a pointer here;
we can thus avoid doing an allocation when the local just stores
immediate values and never has its address taken.
Trait Implementations
sourceimpl<Prov: Clone + Provenance> Clone for LocalValue<Prov>
impl<Prov: Clone + Provenance> Clone for LocalValue<Prov>
sourcefn clone(&self) -> LocalValue<Prov>
fn clone(&self) -> LocalValue<Prov>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl<Prov: Debug + Provenance> Debug for LocalValue<Prov>
impl<Prov: Debug + Provenance> Debug for LocalValue<Prov>
impl<Prov: Copy + Provenance> Copy for LocalValue<Prov>
Auto Trait Implementations
impl<Prov> RefUnwindSafe for LocalValue<Prov>where
Prov: RefUnwindSafe,
impl<Prov> Send for LocalValue<Prov>where
Prov: Send,
impl<Prov> Sync for LocalValue<Prov>where
Prov: Sync,
impl<Prov> Unpin for LocalValue<Prov>where
Prov: Unpin,
impl<Prov> UnwindSafe for LocalValue<Prov>where
Prov: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
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.