[][src]Trait bounded_registers::bounds::ReifyTo

pub trait ReifyTo<T> {
    fn reify() -> T;
}

Reify is basically From, but both types are foreign so we have to make a new trait. It's the last peice to our numeric-like typeclass trait thingy and allows us to convert any Unsigned type to some target numeric type.

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

Required methods

fn reify() -> T

Loading content...

Implementors

impl<T: Unsigned> ReifyTo<usize> for T[src]

impl<T: Unsigned> ReifyTo<u8> for T[src]

impl<T: Unsigned> ReifyTo<u16> for T[src]

impl<T: Unsigned> ReifyTo<u32> for T[src]

Loading content...