pub trait Integer<T>: Copy + From<u8> + PartialEq + PartialOrd + Add<Output = T> + BitAnd<Output = T> + Div<Output = T> + Mul<Output = T> + Rem<Output = T> + Shr<Output = T> + Sub<Output = T> {
    const ZERO: T;
    const ONE: T;
    const TEN: T;
}Required Associated Constants§
Object Safety§
This trait is not object safe.