[][src]Struct refloctopus::ReflectedType

pub struct ReflectedType<'db> {
    pub id: TypeId,
    pub name: &'static str,
    pub layout: Layout,
    pub attrs: Cow<'db, [Attr<'db>]>,
    pub shape: DataShape<'db>,
}

A Rust type, of some kind, with a unique TypeId.

Fields

id: TypeIdname: &'static strlayout: Layoutattrs: Cow<'db, [Attr<'db>]>shape: DataShape<'db>

Trait Implementations

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

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

Auto Trait Implementations

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

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

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

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

impl<'db> UnwindSafe for ReflectedType<'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.