Function warp::filters::method::options

source ·
pub fn options() -> impl Filter<Extract = (), Error = Rejection> + 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);