Trait Int

pub trait Int: Sized + Clone + Copy + Debug + Shr<u32, Output = Self> + Shl<u32, Output = Self> + BitAnd<Output = Self> + BitOr<Output = Self> + PartialEq + CastInto<i16>

Collection of traits that allow us to be generic over integer size.

Associated Constants

const ZERO: Self;
const ONE: Self;

Implementors