pub fn patch<U: Into<String>>(url: U) -> Request<Flawless>
Create a PATCH request.
use flawless_http::patch; let response = patch("https://httpbin.org/patch").send(); assert!(response.is_ok());