[][src]Struct yup_hyper_mock::SequentialConnector

pub struct SequentialConnector {
    pub content: Vec<String>,
    pub current: Mutex<usize>,
}

A connector which requires you to implement the Default trait, allowing you to determine the data it should be initialized with

Fields

content: Vec<String>current: Mutex<usize>

Trait Implementations

impl Default for SequentialConnector[src]

impl Connect for SequentialConnector[src]

type Transport = MockPollStream

The connected IO Stream.

type Error = Error

An error occured when trying to connect.

type Future = Box<dyn Future<Item = (Self::Transport, Connected), Error = Self::Error> + Send>

A Future that will resolve to the connected Transport.

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T