Trait arbitrary::unstructured::Int
source · [−]pub trait Int: Copy + PartialOrd + Ord + Sub<Self, Output = Self> + Rem<Self, Output = Self> + Shr<Self, Output = Self> + Shl<usize, Output = Self> + BitOr<Self, Output = Self> { }Expand description
A trait that is implemented for all of the primitive integers:
u8u16u32u64u128usizei8i16i32i64i128isize
Don’t implement this trait yourself.