Trait Int
pub trait Int:
Copy
+ Debug
+ PartialOrd
+ Ord
+ Sub<Output = Self>
+ Rem<Output = Self>
+ Shr<Output = Self>
+ Shl<usize, Output = Self>
+ BitOr<Output = Self> { }Expand description
A trait that is implemented for all of the primitive integers:
u8u16u32u64u128usizei8i16i32i64i128isize
Don’t implement this trait yourself.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".