pub struct RateLimitMiddleware<S, K: KeyExtractor> { /* private fields */ }Trait Implementations§
Source§impl<S, B, K> Service<ServiceRequest> for RateLimitMiddleware<S, K>where
K: KeyExtractor,
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
B: MessageBody + 'static,
impl<S, B, K> Service<ServiceRequest> for RateLimitMiddleware<S, K>where
K: KeyExtractor,
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
B: MessageBody + 'static,
Source§type Response = ServiceResponse<EitherBody<B>>
type Response = ServiceResponse<EitherBody<B>>
Responses given by the service.
Source§type Future = Pin<Box<dyn Future<Output = Result<<RateLimitMiddleware<S, K> as Service<ServiceRequest>>::Response, <RateLimitMiddleware<S, K> as Service<ServiceRequest>>::Error>>>>
type Future = Pin<Box<dyn Future<Output = Result<<RateLimitMiddleware<S, K> as Service<ServiceRequest>>::Response, <RateLimitMiddleware<S, K> as Service<ServiceRequest>>::Error>>>>
The future response value.
Auto Trait Implementations§
impl<S, K> !RefUnwindSafe for RateLimitMiddleware<S, K>
impl<S, K> !Send for RateLimitMiddleware<S, K>
impl<S, K> !Sync for RateLimitMiddleware<S, K>
impl<S, K> !UnwindSafe for RateLimitMiddleware<S, K>
impl<S, K> Freeze for RateLimitMiddleware<S, K>where
K: Freeze,
impl<S, K> Unpin for RateLimitMiddleware<S, K>where
K: Unpin,
impl<S, K> UnsafeUnpin for RateLimitMiddleware<S, K>where
K: UnsafeUnpin,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
impl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
Source§fn into_service(self) -> S
fn into_service(self) -> S
Convert to a
ServiceSource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<S, Req> ServiceExt<Req> for Swhere
S: Service<Req>,
impl<S, Req> ServiceExt<Req> for Swhere
S: Service<Req>,
Source§fn map<F, R>(self, f: F) -> Map<Self, F, Req, R>
fn map<F, R>(self, f: F) -> Map<Self, F, Req, R>
Map this service’s output to a different type, returning a new service
of the resulting type. Read more