pub trait WebState {
    fn http(
        &self,
        proxy: &Option<SocketAddr>
    ) -> Result<Arc<Client<Resolver>>, Error>;
fn register_in_jar(&self, session: &str, key: String, value: String); }

Required methods

Implementors