pub trait FracApprox<F>: Sized {
// Required methods
fn approx(self, pred: F) -> [ApproxBound<Fraction<Self>>; 2];
fn approx_iter(self, pred: F) -> SbTreeUnsigned<Self, F> ⓘ;
}Required Methods§
fn approx(self, pred: F) -> [ApproxBound<Fraction<Self>>; 2]
fn approx_iter(self, pred: F) -> SbTreeUnsigned<Self, F> ⓘ
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.