pub trait OrderMethodValue:
Debug
+ Default
+ Copy
+ Clone
+ Eq
+ PartialEq
+ Ord
+ PartialOrd
+ Hash
+ FromStr<Err = ParseIntError> {
// Required methods
fn zero() -> Self;
fn one() -> Self;
fn abs(&self) -> Self;
}Expand description
Value for OrderMethod. This should be i8 or i16.
Required Methods§
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.