pub trait LessOprBuilder<T, Rhs = T> {
// Required methods
fn new() -> Box<dyn LessOpr<T, Rhs>>;
fn new_with(precision: T) -> Box<dyn LessOpr<T, Rhs>>;
}Required Methods§
fn new() -> Box<dyn LessOpr<T, Rhs>>
fn new_with(precision: T) -> Box<dyn LessOpr<T, Rhs>>
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.