(mut self, headers: HashMap<String, String>)
| 80 | } |
| 81 | |
| 82 | pub fn with_headers(mut self, headers: HashMap<String, String>) -> Self { |
| 83 | self.headers = headers; |
| 84 | self |
| 85 | } |
| 86 | |
| 87 | pub fn with_session_id_header(mut self, header_name: impl Into<String>) -> Self { |
| 88 | self.session_id_header = Some(header_name.into()); |
no outgoing calls
no test coverage detected