pub struct ConstAlloc<'tcx> {
pub alloc_id: AllocId,
pub ty: Ty<'tcx>,
}
Expand description
Evaluated Constants
Represents the result of const evaluation via the eval_to_allocation
query.
Not to be confused with ConstAllocation
, which directly refers to the underlying data!
Here we indirect via an AllocId
.
Fields§
§alloc_id: AllocId
The value lives here, at offset 0, and that allocation definitely is an AllocKind::Memory
(so you can use AllocMap::unwrap_memory
).
ty: Ty<'tcx>
Auto Trait Implementations§
impl<'tcx> Freeze for ConstAlloc<'tcx>
impl<'tcx> !RefUnwindSafe for ConstAlloc<'tcx>
impl<'tcx> Send for ConstAlloc<'tcx>
impl<'tcx> Sync for ConstAlloc<'tcx>
impl<'tcx> Unpin for ConstAlloc<'tcx>
impl<'tcx> !UnwindSafe for ConstAlloc<'tcx>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.