pub trait ChtInt:
Copy
+ Ord
+ Default
+ Debug {
// Required methods
fn oo() -> Self;
fn right(self, b: Self, line1: (Self, Self)) -> Self;
fn on_line(self, line: (Self, Self)) -> Self;
fn simplify(self) -> i8;
}Required Methods§
fn oo() -> Self
fn right(self, b: Self, line1: (Self, Self)) -> Self
fn on_line(self, line: (Self, Self)) -> Self
fn simplify(self) -> i8
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.