Struct ittech::RangedU8[][src]

pub struct RangedU8<const LOW: u8, const HIGH: u8>(_);

Implementations

impl<const LOW: u8, const HIGH: u8> RangedU8<LOW, HIGH>[src]

pub fn as_u8(self) -> u8[src]

Trait Implementations

impl<const LOW: u8, const HIGH: u8> Clone for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> Copy for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> Debug for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> Eq for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> Ord for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> PartialEq<RangedU8<LOW, HIGH>> for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> PartialOrd<RangedU8<LOW, HIGH>> for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> StructuralEq for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> StructuralPartialEq for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> TryFrom<u8> for RangedU8<LOW, HIGH>[src]

type Error = TryFromIntError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<const LOW: u8, const HIGH: u8> RefUnwindSafe for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> Send for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> Sync for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> Unpin for RangedU8<LOW, HIGH>[src]

impl<const LOW: u8, const HIGH: u8> UnwindSafe for RangedU8<LOW, HIGH>[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.