heart

Function get

Source
pub fn get() -> impl Filter + Copy
Expand description

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

ยงExample

use warp::Filter;

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