[][src]Struct tsukuyomi_server::test::Session

pub struct Session<'a, S, Rt: 'a> { /* fields omitted */ }

A type which manages a series of requests.

Methods

impl<'a, S, Bd> Session<'a, S, Runtime> where
    S: Service<Request<Body>, Response = Response<Bd>>,
    Bd: Payload,
    S::Error: Into<Box<dyn Error + Send + Sync + 'static>>,
    S::Future: Send + 'static, 
[src]

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

impl<'a, S, Bd> Session<'a, S, Runtime> where
    S: Service<Request<Body>, Response = Response<Bd>>,
    Bd: Payload,
    S::Error: Into<Box<dyn Error + Send + Sync + 'static>>, 
[src]

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

impl<'a, S, Rt> Session<'a, S, Rt> where
    S: Service<Request<Body>>, 
[src]

Sets whether to save the Cookie entries or not.

The default value is false.

Returns the reference to the underlying Tokio runtime.

Trait Implementations

impl<'a, S: Debug, Rt: Debug + 'a> Debug for Session<'a, S, Rt>
[src]

Auto Trait Implementations

impl<'a, S, Rt> Send for Session<'a, S, Rt> where
    Rt: Send,
    S: Send

impl<'a, S, Rt> Sync for Session<'a, S, Rt> where
    Rt: Sync,
    S: 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]

🔬 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]

🔬 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