[][src]Struct cliff::ExponentialCliffSearcher

pub struct ExponentialCliffSearcher { /* fields omitted */ }

An iterator that determines the maximum supported load for a system by exponential search.

See the crate-level documentation for details.

Methods

impl ExponentialCliffSearcher[src]

pub fn new(start: usize) -> Self[src]

Perform a load search starting at start, and ending when the maximum load has been determined to within a range of start / 2.

pub fn until(start: usize, min_width: usize) -> Self[src]

Perform a load search starting at start, and ending when the maximum load has been determined to within a range of min_width.

pub fn overloaded(&mut self)[src]

Indicate that the system could not keep up with the previous load factor yielded by Iterator::next.

This will affect what value the next call to Iterator::next yields.

This provides CliffSearch::overloaded without having to use the trait.

pub fn estimate(&self) -> Range<usize>[src]

Give the current estimate of the maximum load the system-under-test can support.

This provides CliffSearch::estimate without having to use the trait.

Trait Implementations

impl CliffSearch for ExponentialCliffSearcher[src]

impl Clone for ExponentialCliffSearcher[src]

impl Debug for ExponentialCliffSearcher[src]

impl Iterator for ExponentialCliffSearcher[src]

type Item = usize

The type of the elements being iterated over.

Auto Trait Implementations

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.