[][src]Trait ufix::Positive

pub trait Positive {
    const U8: u8;
    const U16: u16;
    const U32: u32;
    const U64: u64;
    const USIZE: usize;
    const I8: i8;
    const I16: i16;
    const I32: i32;
    const I64: i64;
    const ISIZE: isize;
}

The trait which implemented for type-level numbers which is greater than zero.

Associated Constants

const U8: u8

The type as u8

const U16: u16

The type as u16

const U32: u32

The type as u32

const U64: u64

The type as u64

const USIZE: usize

The type as usize

const I8: i8

The type as i8

const I16: i16

The type as i16

const I32: i32

The type as i32

const I64: i64

The type as i64

const ISIZE: isize

The type as isize

Loading content...

Implementations on Foreign Types

impl<U: Unsigned + NonZero> Positive for PInt<U>[src]

impl<U: Unsigned, B: Bit> Positive for UInt<U, B>[src]

Loading content...

Implementors

Loading content...