(mut self, base_url: impl Into<String>)
| 75 | } |
| 76 | |
| 77 | pub fn with_base_url(mut self, base_url: impl Into<String>) -> Self { |
| 78 | self.base_url = Some(base_url.into()); |
| 79 | self |
| 80 | } |
| 81 | |
| 82 | pub fn with_headers(mut self, headers: HashMap<String, String>) -> Self { |
| 83 | self.headers = headers; |
no outgoing calls
no test coverage detected