(mut self, proxy: HttpProxy)
| 67 | } |
| 68 | |
| 69 | pub fn cookies_enabled(mut self, cookies_enabled: bool) -> Self { |
| 70 | self.cookies_enabled = cookies_enabled; |
| 71 | self |
| 72 | } |
| 73 | |
| 74 | pub fn proxy(mut self, proxy: HttpProxy) -> Self { |
| 75 | self.proxy = Some(proxy); |
no outgoing calls