pub(super) enum Place<Prov: Provenance = CtfeProvenance> {
    Ptr(MemPlace<Prov>),
    Local {
        frame: usize,
        local: Local,
        offset: Option<Size>,
    },
}

Variants§

§

Ptr(MemPlace<Prov>)

A place referring to a value allocated in the Memory system.

§

Local

Fields

§frame: usize
§local: Local
§offset: Option<Size>

To support alloc-free locals, we are able to write directly to a local. The offset indicates where in the local this place is located; if it is None, no projection has been applied. Such projections are meaningful even if the offset is 0, since they can change layouts. (Without that optimization, we’d just always be a MemPlace.) Note that this only stores the frame index, not the thread this frame belongs to – that is implicit. This means a Place must never be moved across interpreter thread boundaries!

This variant shall not be used for unsized types – those must always live in memory.

Trait Implementations§

source§

impl<Prov: Clone + Provenance> Clone for Place<Prov>

source§

fn clone(&self) -> Place<Prov>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Prov: Debug + Provenance> Debug for Place<Prov>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Prov: Copy + Provenance> Copy for Place<Prov>

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§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.

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.