[][src]Struct refloctopus::Field

pub struct Field<'db> {
    pub offset: usize,
    pub name: Option<&'static str>,
    pub attrs: &'db [Attr<'db>],
    pub id: TypeId,
    pub shape: DataShape<'db>,
}

A named or unnamed field, offset from the base of its containing type.

TODO(docs): examples of fields in some types, showing how the shape transparency works.

Fields

offset: usize

offset relative to the containing type

name: Option<&'static str>attrs: &'db [Attr<'db>]id: TypeIdshape: DataShape<'db>

Trait Implementations

impl<'db> Clone for Field<'db>[src]

impl<'db> Copy for Field<'db>[src]

impl<'db> Debug for Field<'db>[src]

Auto Trait Implementations

impl<'db> RefUnwindSafe for Field<'db>[src]

impl<'db> Send for Field<'db>[src]

impl<'db> Sync for Field<'db>[src]

impl<'db> Unpin for Field<'db>[src]

impl<'db> UnwindSafe for Field<'db>[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> Erasable for T

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.