patch

Function patch 

Source
pub fn patch<U: Into<String>>(url: U) -> Request<Flawless>
Expand description

Create a PATCH request.

use flawless_http::patch;

let response = patch("https://httpbin.org/patch").send();
assert!(response.is_ok());