pub fn head() -> impl Filter + Copy
Create a Filter that requires the request method to be HEAD.
Filter
HEAD
use warp::Filter; let head_only = warp::head().map(warp::reply);