Trait FixedInteger

Source
pub trait FixedInteger:
    Bounded
    + ConditionallySelectable
    + Constants
    + Copy
    + Integer {
    const LIMBS: usize;
}
Expand description

Fixed-width integers.

Required Associated Constants§

Source

const LIMBS: usize

The number of limbs used on this platform.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<const LIMBS: usize> FixedInteger for Uint<LIMBS>

Source§

const LIMBS: usize = LIMBS