pub enum Place<Prov = AllocId>where
Prov: Provenance,{
Ptr(MemPlace<Prov>),
Local {
frame: usize,
local: Local,
},
}
Variants
Ptr(MemPlace<Prov>)
A place referring to a value allocated in the Memory
system.
Local
To support alloc-free locals, we are able to write directly to a local.
(Without that optimization, we’d just always be a MemPlace
.)
Auto Trait Implementations
impl<Prov> RefUnwindSafe for Place<Prov>where
Prov: RefUnwindSafe,
impl<Prov> Send for Place<Prov>where
Prov: Send,
impl<Prov> Sync for Place<Prov>where
Prov: Sync,
impl<Prov> Unpin for Place<Prov>where
Prov: Unpin,
impl<Prov> UnwindSafe for Place<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
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
fn vzip(self) -> V
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.