pub trait FractionBisect: Sized + SbInt {
// Provided method
fn fraction_bisect(
self,
pred: impl Fn(Self, Self) -> bool,
) -> ((Self, Self), (Self, Self)) { ... }
}Provided Methods§
fn fraction_bisect( self, pred: impl Fn(Self, Self) -> bool, ) -> ((Self, Self), (Self, Self))
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.