Struct gotham::router::route::matcher::access_control_request_method::AccessControlRequestMethodMatcher[][src]

pub struct AccessControlRequestMethodMatcher { /* fields omitted */ }

A route matcher that checks whether the value of the Access-Control-Request-Method header matches the defined value.

Usage:

let matcher = AccessControlRequestMethodMatcher::new(Method::PUT);

// use the matcher for your request
route.options("/foo")
	.extend_route_matcher(matcher)
	.to(|state| {
		// we know that this is a CORS preflight for a PUT request
		let mut res = create_empty_response(&state, StatusCode::NO_CONTENT);
		res.headers_mut().insert(ACCESS_CONTROL_ALLOW_METHODS, "PUT".parse().unwrap());
		(state, res)
	});

Implementations

impl AccessControlRequestMethodMatcher[src]

pub fn new(method: Method) -> Self[src]

Construct a new matcher that matches if the Access-Control-Request-Method header matches method. Note that during matching the method is normalized according to the fetch specification, that is, byte-uppercased. This means that when using a custom method instead of a predefined one, make sure it is uppercased or this matcher will never succeed.

Trait Implementations

impl Clone for AccessControlRequestMethodMatcher[src]

impl Debug for AccessControlRequestMethodMatcher[src]

impl RouteMatcher for AccessControlRequestMethodMatcher[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<M> IntoRouteMatcher for M where
    M: RouteMatcher + Send + Sync + 'static, 
[src]

type Output = M

The concrete RouteMatcher each implementation will provide.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,