K
Size: a a a
K
K
AS
impl<S, B> Service for AuthenticationMiddleware<S>
where
S: Service<Request = ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
S::Future: 'static,
{
type Future = Box<dyn Future<Output = Result<Self::Response, Self::Error>>>;
type Response = ServiceResponse<B>;
type Request = ServiceRequest;
type Error = Error;
fn poll_ready(&mut self, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
self.service.poll_ready(cx)
}
fn call(&mut self, mut req: ServiceRequest) -> Self::Future {
}
}
AS
AS
K
AS
AS
AS
AS
m
m
m
m
m
ML
ML
ML