[][src]Enum rustc_ap_rustc_target::abi::FieldsShape

pub enum FieldsShape {
    Primitive,
    Union(NonZeroUsize),
    Array {
        stride: Size,
        count: u64,
    },
    Arbitrary {
        offsets: Vec<Size>,
        memory_index: Vec<u32>,
    },
}

Describes how the fields of a type are located in memory.

Variants

Primitive

Scalar primitives and !, which never have fields.

All fields start at no offset. The usize is the field count.

Array

Array/vector-like placement, with all fields of identical types.

Fields of Array

stride: Sizecount: u64
Arbitrary

Struct-like placement, with precomputed offsets.

Fields are guaranteed to not overlap, but note that gaps before, between and after all the fields are NOT always padding, and as such their contents may not be discarded. For example, enum variants leave a gap at the start, where the discriminant field in the enum layout goes.

Fields of Arbitrary

offsets: Vec<Size>

Offsets for the first byte of each field, ordered to match the source definition order. This vector does not go in increasing order.

memory_index: Vec<u32>

Maps source order field indices to memory order indices, depending on how the fields were reordered (if at all). This is a permutation, with both the source order and the memory order using the same (0..n) index ranges.

Note that during computation of memory_index, sometimes it is easier to operate on the inverse mapping (that is, from memory order to source order), and that is usually named inverse_memory_index.

Implementations

impl FieldsShape[src]

pub fn count(&self) -> usize[src]

pub fn offset(&self, i: usize) -> Size[src]

pub fn memory_index(&self, i: usize) -> usize[src]

pub fn index_by_increasing_offset<'a>(
    &'a self
) -> impl Iterator<Item = usize> + 'a
[src]

Gets source indices of the fields by increasing offsets.

Trait Implementations

impl Debug for FieldsShape[src]

impl Eq for FieldsShape[src]

impl Hash for FieldsShape[src]

impl<__CTX> HashStable<__CTX> for FieldsShape where
    __CTX: HashStableContext
[src]

impl PartialEq<FieldsShape> for FieldsShape[src]

impl StructuralEq for FieldsShape[src]

impl StructuralPartialEq for FieldsShape[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> MaybeResult<T> for T[src]

type Error = !

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<E> SpecializationError for E[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.