1 2 3 4 5 6 7 8 9 10
use crate::*; pub trait UnsignedPrim: Prim + NotNegative + TypeMin {} impl UnsignedPrim for u8 {} impl UnsignedPrim for u16 {} impl UnsignedPrim for u32 {} impl UnsignedPrim for u64 {} impl UnsignedPrim for u128 {} impl UnsignedPrim for usize {}