Struct repr_c_impl::layout::TypeLayout[][src]

pub struct TypeLayout {
    pub size_bits: u64,
    pub field_alignment_bits: u64,
    pub pointer_alignment_bits: u64,
    pub required_alignment_bits: u64,
}

The computed layout of a type.

Fields

size_bits: u64

The size of the type in bits.

This is the value returned by sizeof and C and std::mem::size_of in Rust (but in bits instead of bytes). This is a multiple of pointer_alignment_bits.

field_alignment_bits: u64

The alignment of the type, in bits, when used as a field in a record.

This is usually the value returned by _Alignof in C, but there are some edge cases in GCC where _Alignof returns a smaller value.

pointer_alignment_bits: u64

The alignment, in bits, of valid pointers to this type.

This is the value returned by std::mem::align_of in Rust (but in bits instead of bytes). size_bits is a multiple of this value.

required_alignment_bits: u64

The required alignment of the type in bits.

This value is only used by MSVC targets. It is 8 on all other targets. On MSVC targets, this value restricts the effects of #pragma pack except in some cases involving bit-fields.

Trait Implementations

impl Clone for TypeLayout[src]

impl Copy for TypeLayout[src]

impl Debug for TypeLayout[src]

impl Default for TypeLayout[src]

impl Eq for TypeLayout[src]

impl Into<()> for TypeLayout[src]

impl Layout for TypeLayout[src]

type TypeLayout = TypeLayout

The type used to encode the layout of the type itself.

type FieldLayout = FieldLayout

The type used to encode the layout of a field in a record.

type OpaqueLayout = TypeLayout

The type used to encode the layout of an opaque type.

impl PartialEq<TypeLayout> for TypeLayout[src]

impl StructuralEq for TypeLayout[src]

impl StructuralPartialEq for TypeLayout[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<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.