[][src]Struct bounded_registers::bounds::Reifier

pub struct Reifier<U: Unsigned, T> { /* fields omitted */ }

We have to jump through some hoops to get types to align. Reifier is a parametric version of something like From that we can use to implement reify() as a const function; you'll find it's used in the generated code to make the field values we know ahead of time const.

Note: You probably don't want to use this directly.

Methods

impl<U: Unsigned> Reifier<U, u8>[src]

pub const fn reify() -> u8[src]

impl<U: Unsigned> Reifier<U, u16>[src]

pub const fn reify() -> u16[src]

impl<U: Unsigned> Reifier<U, u32>[src]

pub const fn reify() -> u32[src]

impl<U: Unsigned> Reifier<U, u64>[src]

pub const fn reify() -> u64[src]

impl<U: Unsigned> Reifier<U, usize>[src]

pub const fn reify() -> usize[src]

Auto Trait Implementations

impl<U, T> Unpin for Reifier<U, T> where
    T: Unpin,
    U: Unpin

impl<U, T> Send for Reifier<U, T> where
    T: Send,
    U: Send

impl<U, T> Sync for Reifier<U, T> where
    T: Sync,
    U: Sync

Blanket Implementations

impl<T> From<T> for T[src]

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> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self