pub fn reply() -> impl ReplyExpand description
Returns an empty Reply with status code 200 OK.
ยงExample
use warp::Filter;
// GET /just-ok returns an empty `200 OK`.
let route = warp::path("just-ok")
.map(|| {
println!("got a /just-ok request!");
warp::reply()
});