Struct repc::layout::Type[][src]

pub struct Type<I> where
    I: Layout
{ pub layout: <I as Layout>::TypeLayout, pub annotations: Vec<Annotation, Global>, pub variant: TypeVariant<I>, }

A C type.

Fields

layout: <I as Layout>::TypeLayout

The layout of the type.

annotations: Vec<Annotation, Global>

The annotations on this type.

variant: TypeVariant<I>

The variant of the type.

Implementations

impl<I> Type<I> where
    I: Layout
[src]

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

Returns the identical type with the Layout converted.

Trait Implementations

impl<I> Clone for Type<I> where
    I: Layout + Clone,
    <I as Layout>::TypeLayout: Clone
[src]

impl<I> Debug for Type<I> where
    I: Layout + Debug,
    <I as Layout>::TypeLayout: Debug
[src]

impl<I> Eq for Type<I> where
    I: Layout + Eq,
    <I as Layout>::TypeLayout: Eq
[src]

impl<I> PartialEq<Type<I>> for Type<I> where
    I: Layout + PartialEq<I>,
    <I as Layout>::TypeLayout: PartialEq<<I as Layout>::TypeLayout>, 
[src]

impl<I> StructuralEq for Type<I> where
    I: Layout
[src]

impl<I> StructuralPartialEq for Type<I> where
    I: Layout
[src]

Auto Trait Implementations

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

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

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

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

impl<I> UnwindSafe for Type<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.