[][src]Struct izanami::test::Client

pub struct Client<'a, S, Rt> where
    S: MakeService<(), Request<MockRequestBody>>,
    Rt: Runtime<S>, 
{ /* fields omitted */ }

A type that simulates an established connection with a client.

Methods

impl<'a, S, Rt> Client<'a, S, Rt> where
    S: MakeService<(), Request<MockRequestBody>>,
    Rt: Runtime<S>, 
[src]

pub fn perform(
    &mut self,
    input: impl Input
) -> Result<Response<Output>>
[src]

Applies an HTTP request to this client and await its response.

pub fn runtime(&mut self) -> &mut Rt
[src]

Returns the reference to the underlying runtime.

Trait Implementations

impl<'a, S: Debug, Rt: Debug> Debug for Client<'a, S, Rt> where
    S: MakeService<(), Request<MockRequestBody>>,
    Rt: Runtime<S>,
    S::Service: Debug
[src]

Auto Trait Implementations

impl<'a, S, Rt> Send for Client<'a, S, Rt> where
    Rt: Send,
    S: Send,
    <S as MakeService<(), Request<MockRequestBody>>>::Service: Send

impl<'a, S, Rt> Sync for Client<'a, S, Rt> where
    Rt: Sync,
    S: Sync,
    <S as MakeService<(), Request<MockRequestBody>>>::Service: Sync

Blanket Implementations

impl<T> From for T
[src]

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

impl<T, U> TryFrom for T where
    T: From<U>, 
[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> 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T