pub struct RateLimitService<T, CB, S>where
T: Store,
CB: MessageBody,{ /* private fields */ }Trait Implementations§
Source§impl<T, CB, S: Clone> Clone for RateLimitService<T, CB, S>
impl<T, CB, S: Clone> Clone for RateLimitService<T, CB, S>
Source§fn clone(&self) -> RateLimitService<T, CB, S>
fn clone(&self) -> RateLimitService<T, CB, S>
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<T, CB, S, B> Service<ServiceRequest> for RateLimitService<T, CB, S>where
T: Store + 'static,
CB: MessageBody + 'static,
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
S::Future: 'static,
B: 'static,
<T as Store>::Key: 'static,
impl<T, CB, S, B> Service<ServiceRequest> for RateLimitService<T, CB, S>where
T: Store + 'static,
CB: MessageBody + 'static,
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
S::Future: 'static,
B: 'static,
<T as Store>::Key: 'static,
Source§type Response = ServiceResponse<EitherBody<B, EitherBody<BoxBody, CB>>>
type Response = ServiceResponse<EitherBody<B, EitherBody<BoxBody, CB>>>
Responses given by the service.
Source§type Error = <S as Service<ServiceRequest>>::Error
type Error = <S as Service<ServiceRequest>>::Error
Errors produced by the service when polling readiness or executing call.
Source§type Future = Pin<Box<dyn Future<Output = Result<<RateLimitService<T, CB, S> as Service<ServiceRequest>>::Response, <RateLimitService<T, CB, S> as Service<ServiceRequest>>::Error>>>>
type Future = Pin<Box<dyn Future<Output = Result<<RateLimitService<T, CB, S> as Service<ServiceRequest>>::Response, <RateLimitService<T, CB, S> as Service<ServiceRequest>>::Error>>>>
The future response value.
Auto Trait Implementations§
impl<T, CB, S> Freeze for RateLimitService<T, CB, S>
impl<T, CB, S> RefUnwindSafe for RateLimitService<T, CB, S>
impl<T, CB, S> !Send for RateLimitService<T, CB, S>
impl<T, CB, S> !Sync for RateLimitService<T, CB, S>
impl<T, CB, S> Unpin for RateLimitService<T, CB, S>
impl<T, CB, S> UnwindSafe for RateLimitService<T, CB, 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<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<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