pub trait IntegerBits {
    const BITS: usize;
    fn type_bits(&self) -> usize { ... }
}

Associated Constants

Provided methods

returns Self::BITS

Implementations on Foreign Types

Implementors