[][src]Trait typic::Type

pub trait Type: Candidate {
    type Padding: Padding;
    type Representation;
}

A generic representation of a type.

Associated Types

type Padding: Padding

The padding mode of the type.

type Representation

An abstract representation of the type's structure.

Loading content...

Implementations on Foreign Types

impl Type for u8[src]

impl Type for u16[src]

impl Type for u32[src]

impl Type for u64[src]

impl Type for u128[src]

impl Type for i8[src]

impl Type for i16[src]

impl Type for i32[src]

impl Type for i64[src]

impl Type for i128[src]

impl Type for NonZeroU8[src]

impl Type for NonZeroU16[src]

impl Type for NonZeroU32[src]

impl Type for NonZeroU64[src]

impl Type for NonZeroU128[src]

impl Type for NonZeroI8[src]

impl Type for NonZeroI16[src]

impl Type for NonZeroI32[src]

impl Type for NonZeroI64[src]

impl Type for NonZeroI128[src]

impl<'t, T> Type for &'t T[src]

impl<'t, T> Type for &'t mut T[src]

impl<T> Type for *mut T[src]

impl<T> Type for *const T[src]

Loading content...

Implementors

Loading content...