Struct miri::Allocation

source ·
pub struct Allocation<Prov = AllocId, Extra = (), Bytes = Box<[u8], Global>>where
    Prov: Provenance,{
    bytes: Bytes,
    provenance: ProvenanceMap<Prov>,
    init_mask: InitMask,
    pub align: Align,
    pub mutability: Mutability,
    pub extra: Extra,
}
Expand description

This type represents an Allocation in the Miri/CTFE core engine.

Its public API is rather low-level, working directly with allocation offsets and a custom error type to account for the lack of an AllocId on this level. The Miri/CTFE core engine memory module provides higher-level access.

Fields§

§bytes: Bytes§provenance: ProvenanceMap<Prov>§init_mask: InitMask§align: Align

The alignment of the allocation to detect unaligned reads. (Align guarantees that this is a power of two.)

§mutability: Mutability

true if the allocation is mutable. Also used by codegen to determine if a static should be put into mutable memory, which happens for static mut and static with interior mutability.

§extra: Extra

Extra state for the machine.

Trait Implementations§

Auto Trait Implementations§

§

impl<Prov, Extra, Bytes> RefUnwindSafe for Allocation<Prov, Extra, Bytes>where Bytes: RefUnwindSafe, Extra: RefUnwindSafe, Prov: RefUnwindSafe,

§

impl<Prov, Extra, Bytes> Send for Allocation<Prov, Extra, Bytes>where Bytes: Send, Extra: Send, Prov: Send,

§

impl<Prov, Extra, Bytes> Sync for Allocation<Prov, Extra, Bytes>where Bytes: Sync, Extra: Sync, Prov: Sync,

§

impl<Prov, Extra, Bytes> Unpin for Allocation<Prov, Extra, Bytes>where Bytes: Unpin, Extra: Unpin, Prov: Unpin,

§

impl<Prov, Extra, Bytes> UnwindSafe for Allocation<Prov, Extra, Bytes>where Bytes: UnwindSafe, Extra: UnwindSafe, Prov: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.
§

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.