trait IncrementLike:
Copy
+ Sized
+ PartialEq {
const MULTIPLES_OF_1: Option<Self>;
const MULTIPLES_OF_2: Option<Self>;
const MULTIPLES_OF_5: Option<Self>;
const MULTIPLES_OF_25: Option<Self>;
}
Required Associated Constants§
const MULTIPLES_OF_1: Option<Self>
const MULTIPLES_OF_2: Option<Self>
const MULTIPLES_OF_5: Option<Self>
const MULTIPLES_OF_25: Option<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.