pub struct Client {
pub client: Client,
pub cookie_store: Arc<CookieStoreMutex>,
}
Expand description
A Client
Fields§
§client: Client
The inner http client.
This probably shouldn’t be used by you.
The inner cookie store.
This probably shouldn’t be used by you.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more