Fire a DELETE request. Idempotent: won't re-fire if a request with this ID exists.
(id: &str, url: &str, f: impl FnOnce(&mut HttpConfig) -> &mut HttpConfig)
| 231 | |
| 232 | /// Fire a DELETE request. Idempotent: won't re-fire if a request with this ID exists. |
| 233 | pub fn delete(id: &str, url: &str, f: impl FnOnce(&mut HttpConfig) -> &mut HttpConfig) { |
| 234 | fire_http("DELETE", id, url, f); |
| 235 | } |
| 236 | |
| 237 | /// Get a handle to an existing HTTP request. Returns `None` if no such ID. |
| 238 | pub fn request(id: &str) -> Option<Request> { |
nothing calls this directly
no test coverage detected