Trait partition_point::PrimitiveInteger[][src]

pub trait PrimitiveInteger: Copy + Ord + Add<Output = Self> + Sub<Output = Self> + Div<Output = Self> + Debug {
    const ZERO: Self;
    const ONE: Self;
    const MIN_VALUE: Self;
    const MAX_VALUE: Self;
}

Associated Constants

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

Implementations on Foreign Types

impl PrimitiveInteger for i8[src]

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

impl PrimitiveInteger for i16[src]

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

impl PrimitiveInteger for i32[src]

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

impl PrimitiveInteger for i64[src]

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

impl PrimitiveInteger for i128[src]

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

impl PrimitiveInteger for isize[src]

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

impl PrimitiveInteger for u8[src]

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

impl PrimitiveInteger for u16[src]

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

impl PrimitiveInteger for u32[src]

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

impl PrimitiveInteger for u64[src]

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

impl PrimitiveInteger for u128[src]

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

impl PrimitiveInteger for usize[src]

const ZERO: Self[src]

const ONE: Self[src]

const MIN_VALUE: Self[src]

const MAX_VALUE: Self[src]

Implementors