Skip to main content

Field

Struct Field 

Source
pub struct Field {
    pub name: Option<Symbol>,
    pub ty: TypeId,
    pub offset: u64,
    pub bit: u32,
    pub align: u64,
    pub bits: Option<u32>,
}
Expand description

One member of a record, placed.

Fields§

§name: Option<Symbol>

The member name, absent for an unnamed bit-field or an anonymous member.

§ty: TypeId

The member type.

§offset: u64

Where the member starts, in bytes from the start of the record, rounded down.

For an ordinary member this is exactly where it starts. For a bit-field it is the byte the first of its bits lives in, which is a starting point for a load rather than an address the program may take.

Bytes and not bits, with Field::bit holding the rest. A record may be PTRDIFF_MAX bytes and that many bits is more than a u64 holds, so a single bit offset would make the largest record this compiler can lay out an eighth of the largest one C allows.

§bit: u32

Which bit of that byte the member starts at, from zero to seven.

Always zero for an ordinary member, since every one of those starts on a byte boundary.

§align: u64

What the member’s offset is a multiple of, which is the alignment it was placed at.

The same as the alignment of its type for most members, one byte under packed, and more than either where aligned asked for more. It is here because it is the only thing known about where a member sits once the offset stops being a number: an address is as aligned as the record is and as the offset into it is, and this is that second half.

§bits: Option<u32>

The bit-field width, absent when the member is an ordinary one.

Implementations§

Source§

impl Field

Source

pub fn bit_offset(&self) -> u128

Where the member starts, in bits from the start of the record.

A u128 for the reason Field::offset is bytes. Nothing that generates code wants this number, which is why it is not what is stored: it is here because the layout rules were measured in bits and the tests that check them read in bits.

Source

pub fn is_bit_field(&self) -> bool

Whether the member is a bit-field, zero width included.

Trait Implementations§

Source§

impl Clone for Field

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Field

Source§

impl Debug for Field

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for Field

Source§

impl PartialEq for Field

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Field

Auto Trait Implementations§

§

impl Freeze for Field

§

impl RefUnwindSafe for Field

§

impl Send for Field

§

impl Sync for Field

§

impl Unpin for Field

§

impl UnsafeUnpin for Field

§

impl UnwindSafe for Field

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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 T
where 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 T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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.