[][src]Struct hyperbole::test::Call

pub struct Call<'a> { /* fields omitted */ }

A test call.

Implementations

impl<'a> Call<'a>[src]

pub fn body<B: Into<Body>>(self, body: B) -> Self[src]

Set a request body for this call.

pub fn body_json<T: Serialize>(self, body: &T) -> Self[src]

Set a json request body for this call.

pub async fn dispatch_body(self) -> Response<Body>[src]

Dispatch the request defined by this call.

pub async fn dispatch_bytes(self) -> Response<Bytes>[src]

Dispatch the request defined by this call, retrieving the response body as a Bytes.

pub async fn dispatch(self) -> Response<String>[src]

Dispatch the request defined by this call, retrieving the response body as a String.

pub async fn dispatch_json<T: DeserializeOwned>(self) -> Response<T>[src]

Dispatch the request defined by this call, retrieving the response body as a decoded json object.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Call<'a>

impl<'a> Send for Call<'a>

impl<'a> Sync for Call<'a>

impl<'a> Unpin for Call<'a>

impl<'a> !UnwindSafe for Call<'a>

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<Choices> CoproductSubsetter<CNil, HNil> for Choices[src]

type Remainder = Choices

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T, U, I> LiftInto<U, I> for T where
    U: LiftFrom<T, I>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<Source> Sculptor<HNil, HNil> for Source[src]

type Remainder = Source

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.