Struct cookie_store::CookieStoreMutex[][src]

pub struct CookieStoreMutex(_);

A CookieStore wrapped internally by a std::sync::Mutex, suitable for use in async/concurrent contexts. (requires feature reqwest_impl)

Implementations

impl CookieStoreMutex[src]

pub fn new(cookie_store: CookieStore) -> CookieStoreMutex[src]

This is supported on crate feature reqwest_impl only.

Create a new CookieStoreMutex from an existing CookieStore.

pub fn lock(
    &self
) -> Result<MutexGuard<'_, CookieStore>, PoisonError<MutexGuard<'_, CookieStore>>>
[src]

This is supported on crate feature reqwest_impl only.

Lock and get a handle to the contained CookieStore.

Trait Implementations

impl CookieStore for CookieStoreMutex[src]

This is supported on crate feature reqwest_impl only.

impl Debug for CookieStoreMutex[src]

This is supported on crate feature reqwest_impl only.

impl Default for CookieStoreMutex[src]

This is supported on crate feature reqwest_impl only.

fn default() -> Self[src]

Create a new, empty CookieStoreMutex.

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, U> Into<U> for T where
    U: From<T>, 
[src]

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.