Struct repc_impl::layout::RecordField[][src]

pub struct RecordField<I: Layout> {
    pub layout: Option<I::FieldLayout>,
    pub annotations: Vec<Annotation>,
    pub named: bool,
    pub bit_width: Option<u64>,
    pub ty: Type<I>,
}

A field of a record.

Fields

layout: Option<I::FieldLayout>

The layout of the field.

This is None for unnamed fields.

annotations: Vec<Annotation>

The annotations on this field.

named: bool

Whether the field is named.

An unnamed field in C is always a bit-field and is declared like T : N where T is the type of the field and N is the width of the bit-field.

bit_width: Option<u64>

If this is a bit-field, the width of the field.

The field is recognized as a bit-field if and only if this is Some.

ty: Type<I>

The type of the field.

Implementations

impl<I: Layout> RecordField<I>[src]

pub fn into<J: Layout>(self) -> RecordField<J> where
    I::TypeLayout: Into<J::TypeLayout>,
    I::FieldLayout: Into<J::FieldLayout>,
    I::OpaqueLayout: Into<J::OpaqueLayout>, 
[src]

Returns the identical record field with the Layout converted.

Trait Implementations

impl<I: Clone + Layout> Clone for RecordField<I> where
    I::FieldLayout: Clone
[src]

impl<I: Debug + Layout> Debug for RecordField<I> where
    I::FieldLayout: Debug
[src]

impl<I: Eq + Layout> Eq for RecordField<I> where
    I::FieldLayout: Eq
[src]

impl<I: PartialEq + Layout> PartialEq<RecordField<I>> for RecordField<I> where
    I::FieldLayout: PartialEq
[src]

impl<I: Layout> StructuralEq for RecordField<I>[src]

impl<I: Layout> StructuralPartialEq for RecordField<I>[src]

Auto Trait Implementations

impl<I> RefUnwindSafe for RecordField<I> where
    <I as Layout>::FieldLayout: RefUnwindSafe,
    <I as Layout>::OpaqueLayout: RefUnwindSafe,
    <I as Layout>::TypeLayout: RefUnwindSafe
[src]

impl<I> Send for RecordField<I> where
    <I as Layout>::FieldLayout: Send,
    <I as Layout>::OpaqueLayout: Send,
    <I as Layout>::TypeLayout: Send
[src]

impl<I> Sync for RecordField<I> where
    <I as Layout>::FieldLayout: Sync,
    <I as Layout>::OpaqueLayout: Sync,
    <I as Layout>::TypeLayout: Sync
[src]

impl<I> Unpin for RecordField<I> where
    <I as Layout>::FieldLayout: Unpin,
    <I as Layout>::OpaqueLayout: Unpin,
    <I as Layout>::TypeLayout: Unpin
[src]

impl<I> UnwindSafe for RecordField<I> where
    <I as Layout>::FieldLayout: UnwindSafe,
    <I as Layout>::OpaqueLayout: UnwindSafe,
    <I as Layout>::TypeLayout: UnwindSafe
[src]

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.