Function warp::filters::method::v2::get

source ·
pub fn get() -> impl Filter<Extract = (), Error = Rejection> + Copy
Expand description

Create a Filter that requires the request method to be GET.

Example

use warp::Filter;

let get_only = warp::get2().map(warp::reply);