GreaterOprBuilder

Trait GreaterOprBuilder 

Source
pub trait GreaterOprBuilder<T, Rhs = T> {
    // Required methods
    fn new() -> Box<dyn GreaterOpr<T, Rhs>>;
    fn new_with(precision: T) -> Box<dyn GreaterOpr<T, Rhs>>;
}

Required Methods§

Source

fn new() -> Box<dyn GreaterOpr<T, Rhs>>

Source

fn new_with(precision: T) -> Box<dyn GreaterOpr<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.

Implementors§

Source§

impl<T: 'static + PartialOrd<Rhs>, Rhs> GreaterOprBuilder<T, Rhs> for Greater
where for<'a> &'a T: Sub, for<'a> <&'a T as Sub>::Output: PartialOrd<Rhs>,

Source§

impl<T: FloatingNumber + Clone + PartialOrd<Rhs>, Rhs> GreaterOprBuilder<T, Rhs> for Greater
where for<'a> &'a T: Sub, for<'a> <&'a T as Sub>::Output: PartialOrd<Rhs>,

Source§

impl<T: PartialOrd<Rhs>, Rhs> GreaterOprBuilder<T, Rhs> for Greater