Struct actix_web_lab::extract::RequestSignature
source · pub struct RequestSignature<T, 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: RequestSignatureScheme> RequestSignature<T, S>
impl<T, S: RequestSignatureScheme> RequestSignature<T, S>
sourcepub fn into_parts(self) -> (T, S::Signature)
pub fn into_parts(self) -> (T, S::Signature)
Returns tuple containing body type, and owned hash.
Trait Implementations§
source§impl<T: Clone, S: Clone + RequestSignatureScheme> Clone for RequestSignature<T, S>
impl<T: Clone, S: Clone + RequestSignatureScheme> Clone for RequestSignature<T, S>
source§fn clone(&self) -> RequestSignature<T, S>
fn clone(&self) -> RequestSignature<T, S>
Returns a copy 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<T, S> FromRequest for RequestSignature<T, S>where
T: FromRequest + 'static,
T::Error: Debug + Display,
S: RequestSignatureScheme + 'static,
S::Error: Debug + Display,
impl<T, S> FromRequest for RequestSignature<T, S>where
T: FromRequest + 'static,
T::Error: Debug + Display,
S: RequestSignatureScheme + 'static,
S::Error: Debug + Display,
§type Error = RequestSignatureError<T, S>
type Error = RequestSignatureError<T, S>
The associated error which can be returned.
§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) -> Self::Future
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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