Skip to main content

FractionBisect

Trait FractionBisect 

Source
pub trait FractionBisect: Sized + SbInt {
    // Provided method
    fn fraction_bisect(
        self,
        pred: impl Fn(Self, Self) -> bool,
    ) -> ((Self, Self), (Self, Self)) { ... }
}

Provided Methods§

Source

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.

Implementors§