pub fn post() -> impl Filter<Extract = (), Error = Rejection> + Copy
Create a Filter that requires the request method to be POST.
Filter
POST
use warp::Filter; let post_only = warp::post().map(warp::reply);