Available on crate feature
cookies only.Expand description
HTTP cookie storage and request selection.
Jar stores cookies received through Set-Cookie response fields and selects the cookies
that apply to later requests. Domain, path, security, and expiration checks follow the
RFC 6265 storage and retrieval model. CookieStore can be implemented to provide another
storage backend while keeping the same client integration.
Structs§
Enums§
- Cookies
- Serialized
Cookiefield values selected for an outgoing request.
Traits§
- Cookie
Store - Thread-safe cookie storage used by
crate::Client. - Into
Cookie - Converts cookie-like values into an owned
Cookie. - Into
Cookie Store - Converts cookie stores into a shared
CookieStore.