Struct gotham::router::route::matcher::AndRouteMatcher

source ·
pub struct AndRouteMatcher<T, U>{ /* private fields */ }
Expand description

Allows multiple RouteMatcher values to be combined when accessing a request.

§Examples

  let methods = vec![Method::GET, Method::HEAD];
  let supported_media_types = vec![mime::APPLICATION_JSON];
  let method_matcher = MethodOnlyRouteMatcher::new(methods);
  let accept_matcher = AcceptHeaderRouteMatcher::new(supported_media_types);
  let matcher = AndRouteMatcher::new(method_matcher, accept_matcher);

  state.put(Method::GET);

  // Request that matches both requirements
  let mut headers = HeaderMap::new();
  headers.insert(ACCEPT, mime::APPLICATION_JSON.to_string().parse().unwrap());
  state.put(headers);
  assert!(matcher.is_match(&state).is_ok());

  // Request that fails method requirements
  state.put(Method::POST);
  assert!(matcher.is_match(&state).is_err());

  // Request that fails accept header
  state.put(Method::GET);
  let mut headers = HeaderMap::new();
  headers.insert(ACCEPT, mime::TEXT.to_string().parse().unwrap());
  state.put(headers);
  assert!(matcher.is_match(&state).is_err());

Implementations§

source§

impl<T, U> AndRouteMatcher<T, U>

source

pub fn new(t: T, u: U) -> Self

Creates a new AndRouteMatcher

Trait Implementations§

source§

impl<T, U> Clone for AndRouteMatcher<T, U>

source§

fn clone(&self) -> AndRouteMatcher<T, U>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T, U> RouteMatcher for AndRouteMatcher<T, U>

source§

fn is_match(&self, state: &State) -> Result<(), RouteNonMatch>

Determines if the Request meets pre-defined conditions.

Auto Trait Implementations§

§

impl<T, U> Freeze for AndRouteMatcher<T, U>
where T: Freeze, U: Freeze,

§

impl<T, U> RefUnwindSafe for AndRouteMatcher<T, U>

§

impl<T, U> Send for AndRouteMatcher<T, U>
where T: Send, U: Send,

§

impl<T, U> Sync for AndRouteMatcher<T, U>
where T: Sync, U: Sync,

§

impl<T, U> Unpin for AndRouteMatcher<T, U>
where T: Unpin, U: Unpin,

§

impl<T, U> UnwindSafe for AndRouteMatcher<T, U>
where T: UnwindSafe, U: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

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

§

type Output = M

The concrete RouteMatcher each implementation will provide.
source§

fn into_route_matcher(self) -> <M as IntoRouteMatcher>::Output

Transform into a RouteMatcher of the the associated type identified by Output.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more