pub fn end() -> impl Filter<Extract = (), Error = Rejection> + CopyExpand description
Matches the end of a route.
Note that not including end() may result in shorter paths like
/math unintentionally matching /math/sum.
ยงExample
use warp::Filter;
// Matches '/'
let hello = warp::path::end()
.map(|| "Hello, World!");