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
.)
Trait Implementations§
source§impl VisitTags for Place<Provenance>
impl VisitTags for Place<Provenance>
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§
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.