[][src]Struct surf_cookie_middleware::CookieMiddleware

pub struct CookieMiddleware { /* fields omitted */ }

Implementations

impl CookieMiddleware[src]

pub fn new() -> Self[src]

Builds a new CookieMiddleware

Example

use surf::Client;
use surf_cookie_middleware::CookieMiddleware;
let client = Client::new().with(CookieMiddleware::new());
// client.get(...).await?;
// client.get(...).await?; <- this request will send any appropriate
//                            cookies received from the first request,
//                            based on request url

Builds a CookieMiddleware with an existing cookie_store::CookieStore

Example

use surf::Client;
use surf_cookie_middleware::{CookieStore, CookieMiddleware};
let cookie_store = CookieStore::default();
let client = Client::new()
    .with(CookieMiddleware::with_cookie_store(cookie_store));

// client.get(...).await?;
// client.get(...).await?; <- this request will send any appropriate
//                            cookies received from the first request,
//                            based on request url

Trait Implementations

impl Clone for CookieMiddleware[src]

impl Debug for CookieMiddleware[src]

impl Default for CookieMiddleware[src]

impl Middleware for CookieMiddleware[src]

Auto Trait Implementations

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<F> Middleware for F where
    F: Send + Sync + 'static + for<'a> Fn(Request, Client, Next<'a>) -> Pin<Box<dyn Future<Output = Result<Response, Error>> + 'a + Send>>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]