Skip to content

Instantly share code, notes, and snippets.

@gterzian
Created August 17, 2018 10:11
Show Gist options
  • Select an option

  • Save gterzian/06078dbffe81b9017ac189a9696a87e2 to your computer and use it in GitHub Desktop.

Select an option

Save gterzian/06078dbffe81b9017ac189a9696a87e2 to your computer and use it in GitHub Desktop.
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