mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 08:22:59 +01:00
Merge branch 'master' of github.com:actix/actix-web
This commit is contained in:
commit
f559f23e1c
@ -66,7 +66,7 @@ impl<S: 'static> Predicate<S> for AnyPredicate<S> {
|
|||||||
/// r.route()
|
/// r.route()
|
||||||
/// .filter(
|
/// .filter(
|
||||||
/// pred::All(pred::Get())
|
/// pred::All(pred::Get())
|
||||||
/// .and(pred::Header("content-type", "plain/text")),
|
/// .and(pred::Header("content-type", "text/plain")),
|
||||||
/// )
|
/// )
|
||||||
/// .f(|_| HttpResponse::MethodNotAllowed())
|
/// .f(|_| HttpResponse::MethodNotAllowed())
|
||||||
/// });
|
/// });
|
||||||
@ -175,7 +175,8 @@ pub fn Method<S: 'static>(method: http::Method) -> MethodPredicate<S> {
|
|||||||
/// Return predicate that matches if request contains specified header and
|
/// Return predicate that matches if request contains specified header and
|
||||||
/// value.
|
/// value.
|
||||||
pub fn Header<S: 'static>(
|
pub fn Header<S: 'static>(
|
||||||
name: &'static str, value: &'static str,
|
name: &'static str,
|
||||||
|
value: &'static str,
|
||||||
) -> HeaderPredicate<S> {
|
) -> HeaderPredicate<S> {
|
||||||
HeaderPredicate(
|
HeaderPredicate(
|
||||||
header::HeaderName::try_from(name).unwrap(),
|
header::HeaderName::try_from(name).unwrap(),
|
||||||
|
Loading…
Reference in New Issue
Block a user