Created
August 17, 2018 10:11
-
-
Save gterzian/06078dbffe81b9017ac189a9696a87e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pub struct HttpState { | |
| pub hsts_list: RwLock<HstsList>, | |
| pub cookie_jar: RwLock<CookieStorage>, | |
| pub http_cache: RwLock<HttpCache>, | |
| pub auth_cache: RwLock<AuthCache>, | |
| pub history_states: RwLock<HashMap<HistoryStateId, Vec<u8>>>, | |
| pub ssl_client: OpensslClient, | |
| pub connector: Pool<Connector>, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment