[][src]Struct tower_test::mock::Mock

pub struct Mock<T, U> { /* fields omitted */ }

A mock service

Trait Implementations

impl<T, U> Clone for Mock<T, U>[src]

impl<T: Debug, U: Debug> Debug for Mock<T, U>[src]

impl<T, U> Drop for Mock<T, U>[src]

impl<T, U> Service<T> for Mock<T, U>[src]

type Response = U

Responses given by the service.

type Error = Box<dyn Error + Send + Sync>

Errors produced by the service.

type Future = ResponseFuture<U>

The future response value.

Auto Trait Implementations

impl<T, U> RefUnwindSafe for Mock<T, U>[src]

impl<T, U> Send for Mock<T, U> where
    T: Send,
    U: Send
[src]

impl<T, U> Sync for Mock<T, U> where
    T: Send,
    U: Send
[src]

impl<T, U> Unpin for Mock<T, U>[src]

impl<T, U> UnwindSafe for Mock<T, U>[src]

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.