[−][src]Enum rustc_ap_rustc_target::abi::FieldsShape
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.
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]
&'a self
) -> impl Iterator<Item = usize> + 'a
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]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl<__CTX> HashStable<__CTX> for FieldsShape where
__CTX: HashStableContext,
[src]
__CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
[src]
impl PartialEq<FieldsShape> for FieldsShape
[src]
fn eq(&self, other: &FieldsShape) -> bool
[src]
fn ne(&self, other: &FieldsShape) -> bool
[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> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool
[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]
U: From<T>,
impl<T> MaybeResult<T> for T
[src]
type Error = !
fn from(Result<T, <T as MaybeResult<T>>::Error>) -> T
[src]
fn to_result(Self) -> Result<T, <T as MaybeResult<T>>::Error>
[src]
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,