pub trait Integer: Number {
    const BITS: u32;
    const MIN: Self;
    const MAX: Self;
    const SIGNED: bool;
}

Required Associated Constants§

Implementations on Foreign Types§

Implementors§