heart

Function options

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

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

ยงExample

use warp::Filter;

let options_only = warp::options().map(warp::reply);