Struct rust_releases::search::Bisect[][src]

pub struct Bisect<'r, T> { /* fields omitted */ }

With Bisect, one can perform a binary search over a slice of Releases. This can for example be used to more quickly find a MSRV or the latest working nightly build.

Implementations

impl<'r, T> Bisect<'r, T>[src]

pub fn new(releases: &'r [T]) -> Self[src]

Iterate over the element by performing a binary search.

Panics

Panics if the given Releases slice has length 0.

pub fn search_left(&mut self) -> Option<&'r T>[src]

pub fn search_right(&mut self) -> Option<&'r T>[src]

Trait Implementations

impl<'r, T: Clone> Clone for Bisect<'r, T>[src]

impl<'r, T: Debug> Debug for Bisect<'r, T>[src]

Auto Trait Implementations

impl<'r, T> RefUnwindSafe for Bisect<'r, T> where
    T: RefUnwindSafe

impl<'r, T> Send for Bisect<'r, T> where
    T: Sync

impl<'r, T> Sync for Bisect<'r, T> where
    T: Sync

impl<'r, T> Unpin for Bisect<'r, T>

impl<'r, T> UnwindSafe for Bisect<'r, T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.