pub trait Integer: Copy + Ord {
const MIN: Self;
const MAX: Self;
}Expand description
Trait bound for integer types usable with integers().
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".