pub struct ValidateRequestHeader<S, T> { /* private fields */ }
Available on crate feature
validate-request
only.Expand description
Middleware that validates requests.
See the module docs for an example.
Implementations§
Source§impl<S, ResBody> ValidateRequestHeader<S, Basic<ResBody>>
impl<S, ResBody> ValidateRequestHeader<S, Basic<ResBody>>
Sourcepub fn basic(inner: S, username: &str, value: &str) -> Self
Available on crate feature auth
only.
pub fn basic(inner: S, username: &str, value: &str) -> Self
auth
only.Authorize requests using a username and password pair.
The Authorization
header is required to be Basic {credentials}
where credentials
is
base64_encode("{username}:{password}")
.
Since the username and password is sent in clear text it is recommended to use HTTPS/TLS with this method. However use of HTTPS/TLS is not enforced by this middleware.
Source§impl<S, ResBody> ValidateRequestHeader<S, Bearer<ResBody>>
impl<S, ResBody> ValidateRequestHeader<S, Bearer<ResBody>>
Sourcepub fn bearer(inner: S, token: &str) -> Self
Available on crate feature auth
only.
pub fn bearer(inner: S, token: &str) -> Self
auth
only.Authorize requests using a “bearer token”. Commonly used for OAuth 2.
The Authorization
header is required to be Bearer {token}
.
§Panics
Panics if the token is not a valid HeaderValue
.
Source§impl<S, T> ValidateRequestHeader<S, T>
impl<S, T> ValidateRequestHeader<S, T>
Sourcepub fn into_inner(self) -> S
pub fn into_inner(self) -> S
Consumes self
, returning the underlying service.
Source§impl<S, ResBody> ValidateRequestHeader<S, AcceptHeader<ResBody>>
impl<S, ResBody> ValidateRequestHeader<S, AcceptHeader<ResBody>>
Source§impl<S, T> ValidateRequestHeader<S, T>
impl<S, T> ValidateRequestHeader<S, T>
Sourcepub fn custom(inner: S, validate: T) -> ValidateRequestHeader<S, T>
pub fn custom(inner: S, validate: T) -> ValidateRequestHeader<S, T>
Validate requests using a custom method.
Trait Implementations§
Source§impl<S: Clone, T: Clone> Clone for ValidateRequestHeader<S, T>
impl<S: Clone, T: Clone> Clone for ValidateRequestHeader<S, T>
Source§fn clone(&self) -> ValidateRequestHeader<S, T>
fn clone(&self) -> ValidateRequestHeader<S, T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<ReqBody, ResBody, S, V> Service<Request<ReqBody>> for ValidateRequestHeader<S, V>where
V: ValidateRequest<ReqBody, ResponseBody = ResBody>,
S: Service<Request<ReqBody>, Response = Response<ResBody>>,
impl<ReqBody, ResBody, S, V> Service<Request<ReqBody>> for ValidateRequestHeader<S, V>where
V: ValidateRequest<ReqBody, ResponseBody = ResBody>,
S: Service<Request<ReqBody>, Response = Response<ResBody>>,
Auto Trait Implementations§
impl<S, T> Freeze for ValidateRequestHeader<S, T>
impl<S, T> RefUnwindSafe for ValidateRequestHeader<S, T>where
S: RefUnwindSafe,
T: RefUnwindSafe,
impl<S, T> Send for ValidateRequestHeader<S, T>
impl<S, T> Sync for ValidateRequestHeader<S, T>
impl<S, T> Unpin for ValidateRequestHeader<S, T>
impl<S, T> UnwindSafe for ValidateRequestHeader<S, T>where
S: UnwindSafe,
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T, Request> ServiceExt<Request> for T
impl<T, Request> ServiceExt<Request> for T
Source§fn oneshot(
self,
req: Request,
) -> impl Future<Output = Result<Self::Response, Self::Error>>where
Self: Sized,
fn oneshot(
self,
req: Request,
) -> impl Future<Output = Result<Self::Response, Self::Error>>where
Self: Sized,
Consume this
Service
, calling it with the provided request once and only once.Source§fn and_then<F>(self, f: F) -> AndThen<Self, F>
fn and_then<F>(self, f: F) -> AndThen<Self, F>
Executes a new future after this service’s future resolves. Read more
Source§fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
Maps this service’s response value to a different value. Read more
Source§fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
Maps this service’s error value to a different value. Read more
Source§fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
Maps this service’s result type (
Result<Self::Response, Self::Error>
)
to a different value, regardless of whether the future succeeds or
fails. Read moreSource§fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
Composes a function in front of the service. Read more