pub struct RequestSignature<T, S>where
S: RequestSignatureScheme,{ /* private fields */ }
Expand description
Wraps an extractor and calculates a request signature hash alongside.
Warning: Currently, this will always take the body meaning that if a body extractor is used, this needs to wrap it or else it will not work.
Implementations§
Source§impl<T, S> RequestSignature<T, S>where
S: RequestSignatureScheme,
impl<T, S> RequestSignature<T, S>where
S: RequestSignatureScheme,
Sourcepub fn into_parts(self) -> (T, <S as RequestSignatureScheme>::Signature)
pub fn into_parts(self) -> (T, <S as RequestSignatureScheme>::Signature)
Returns tuple containing body type, and owned hash.
Trait Implementations§
Source§impl<T, S> Clone for RequestSignature<T, S>
impl<T, S> Clone for RequestSignature<T, S>
Source§fn clone(&self) -> RequestSignature<T, S>
fn clone(&self) -> RequestSignature<T, S>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T, S> FromRequest for RequestSignature<T, S>where
T: FromRequest + 'static,
<T as FromRequest>::Error: Debug + Display,
S: RequestSignatureScheme + 'static,
<S as RequestSignatureScheme>::Error: Debug + Display,
impl<T, S> FromRequest for RequestSignature<T, S>where
T: FromRequest + 'static,
<T as FromRequest>::Error: Debug + Display,
S: RequestSignatureScheme + 'static,
<S as RequestSignatureScheme>::Error: Debug + Display,
Source§type Error = RequestSignatureError<T, S>
type Error = RequestSignatureError<T, S>
The associated error which can be returned.
Source§type Future = Pin<Box<dyn Future<Output = Result<RequestSignature<T, S>, <RequestSignature<T, S> as FromRequest>::Error>>>>
type Future = Pin<Box<dyn Future<Output = Result<RequestSignature<T, S>, <RequestSignature<T, S> as FromRequest>::Error>>>>
Future that resolves to a
Self
. Read moreSource§fn from_request(
req: &HttpRequest,
payload: &mut Payload,
) -> <RequestSignature<T, S> as FromRequest>::Future
fn from_request( req: &HttpRequest, payload: &mut Payload, ) -> <RequestSignature<T, S> as FromRequest>::Future
Create a
Self
from request parts asynchronously.Auto Trait Implementations§
impl<T, S> Freeze for RequestSignature<T, S>
impl<T, S> RefUnwindSafe for RequestSignature<T, S>
impl<T, S> Send for RequestSignature<T, S>
impl<T, S> Sync for RequestSignature<T, S>
impl<T, S> Unpin for RequestSignature<T, S>
impl<T, S> UnwindSafe for RequestSignature<T, S>
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more