Enum rustc_ap_rustc_target::abi::FieldsShape [−][src]
pub enum FieldsShape { Primitive, Union(NonZeroUsize), Array { stride: Size, count: u64, }, Arbitrary { offsets: Vec<Size>, memory_index: Vec<u32>, }, }
Expand description
Describes how the fields of a type are located in memory.
Variants
Scalar primitives and !
, which never have fields.
Union(NonZeroUsize)
All fields start at no offset. The usize
is the field count.
Array/vector-like placement, with all fields of identical types.
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.
Show fields
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]
impl FieldsShape
[src]Trait Implementations
impl Debug for FieldsShape
[src]
impl Debug for FieldsShape
[src]impl Hash for FieldsShape
[src]
impl Hash for FieldsShape
[src]impl<__CTX> HashStable<__CTX> for FieldsShape where
__CTX: HashStableContext,
[src]
impl<__CTX> HashStable<__CTX> for FieldsShape where
__CTX: HashStableContext,
[src]fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
[src]
impl PartialEq<FieldsShape> for FieldsShape
[src]
impl PartialEq<FieldsShape> for FieldsShape
[src]fn eq(&self, other: &FieldsShape) -> bool
[src]
fn eq(&self, other: &FieldsShape) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &FieldsShape) -> bool
[src]
fn ne(&self, other: &FieldsShape) -> bool
[src]This method tests for !=
.
impl Eq for FieldsShape
[src]
impl StructuralEq for FieldsShape
[src]
impl StructuralPartialEq for FieldsShape
[src]
Auto Trait Implementations
impl RefUnwindSafe for FieldsShape
impl Send for FieldsShape
impl Sync for FieldsShape
impl Unpin for FieldsShape
impl UnwindSafe for FieldsShape
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
pub fn equivalent(&self, key: &K) -> bool
[src]Compare self to key
and return true
if they are equal.
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]impl<T> MaybeResult<T> for T
[src]
impl<T> MaybeResult<T> for T
[src]impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,