pub struct HandleError<S, F, T> { /* private fields */ }Expand description
A Service adapter that handles errors by converting them into responses.
See module docs for more details on axum’s error handling model.
Implementations§
Source§impl<S, F, T> HandleError<S, F, T>
impl<S, F, T> HandleError<S, F, T>
Sourcepub fn new(inner: S, f: F) -> HandleError<S, F, T>
pub fn new(inner: S, f: F) -> HandleError<S, F, T>
Create a new HandleError.
Trait Implementations§
Source§impl<S, F, T> Clone for HandleError<S, F, T>
impl<S, F, T> Clone for HandleError<S, F, T>
Source§fn clone(&self) -> HandleError<S, F, T>
fn clone(&self) -> HandleError<S, F, T>
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<S, F, E> Debug for HandleError<S, F, E>where
S: Debug,
impl<S, F, E> Debug for HandleError<S, F, E>where
S: Debug,
Source§impl<S, F, B, Fut, Res> Service<Request<B>> for HandleError<S, F, ()>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(<S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
B: Send + 'static,
impl<S, F, B, Fut, Res> Service<Request<B>> for HandleError<S, F, ()>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(<S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§impl<S, F, B, Res, Fut, T1> Service<Request<B>> for HandleError<S, F, (T1,)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1> Service<Request<B>> for HandleError<S, F, (T1,)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§impl<S, F, B, Res, Fut, T1, T2> Service<Request<B>> for HandleError<S, F, (T1, T2)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2> Service<Request<B>> for HandleError<S, F, (T1, T2)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§impl<S, F, B, Res, Fut, T1, T2, T3> Service<Request<B>> for HandleError<S, F, (T1, T2, T3)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3> Service<Request<B>> for HandleError<S, F, (T1, T2, T3)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4, T5)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4, T5)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
T11: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
T11: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
T11: FromRequestParts<()> + Send,
T12: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
T11: FromRequestParts<()> + Send,
T12: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
T11: FromRequestParts<()> + Send,
T12: FromRequestParts<()> + Send,
T13: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
T11: FromRequestParts<()> + Send,
T12: FromRequestParts<()> + Send,
T13: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
T11: FromRequestParts<()> + Send,
T12: FromRequestParts<()> + Send,
T13: FromRequestParts<()> + Send,
T14: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
T11: FromRequestParts<()> + Send,
T12: FromRequestParts<()> + Send,
T13: FromRequestParts<()> + Send,
T14: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
T11: FromRequestParts<()> + Send,
T12: FromRequestParts<()> + Send,
T13: FromRequestParts<()> + Send,
T14: FromRequestParts<()> + Send,
T15: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
T11: FromRequestParts<()> + Send,
T12: FromRequestParts<()> + Send,
T13: FromRequestParts<()> + Send,
T14: FromRequestParts<()> + Send,
T15: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)> as Service<Request<B>>>::Future
Source§impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
T11: FromRequestParts<()> + Send,
T12: FromRequestParts<()> + Send,
T13: FromRequestParts<()> + Send,
T14: FromRequestParts<()> + Send,
T15: FromRequestParts<()> + Send,
T16: FromRequestParts<()> + Send,
B: Send + 'static,
impl<S, F, B, Res, Fut, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16> Service<Request<B>> for HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)>where
S: Service<Request<B>> + Clone + Send + 'static,
<S as Service<Request<B>>>::Response: IntoResponse + Send,
<S as Service<Request<B>>>::Error: Send,
<S as Service<Request<B>>>::Future: Send,
F: FnOnce(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, <S as Service<Request<B>>>::Error) -> Fut + Clone + Send + 'static,
Fut: Future<Output = Res> + Send,
Res: IntoResponse,
T1: FromRequestParts<()> + Send,
T2: FromRequestParts<()> + Send,
T3: FromRequestParts<()> + Send,
T4: FromRequestParts<()> + Send,
T5: FromRequestParts<()> + Send,
T6: FromRequestParts<()> + Send,
T7: FromRequestParts<()> + Send,
T8: FromRequestParts<()> + Send,
T9: FromRequestParts<()> + Send,
T10: FromRequestParts<()> + Send,
T11: FromRequestParts<()> + Send,
T12: FromRequestParts<()> + Send,
T13: FromRequestParts<()> + Send,
T14: FromRequestParts<()> + Send,
T15: FromRequestParts<()> + Send,
T16: FromRequestParts<()> + Send,
B: Send + 'static,
Source§type Error = Infallible
type Error = Infallible
Source§type Future = HandleErrorFuture
type Future = HandleErrorFuture
Source§fn poll_ready(
&mut self,
_: &mut Context<'_>,
) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)> as Service<Request<B>>>::Error>>
fn poll_ready( &mut self, _: &mut Context<'_>, ) -> Poll<Result<(), <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)> as Service<Request<B>>>::Error>>
Poll::Ready(Ok(())) when the service is able to process requests. Read moreSource§fn call(
&mut self,
req: Request<B>,
) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)> as Service<Request<B>>>::Future
fn call( &mut self, req: Request<B>, ) -> <HandleError<S, F, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)> as Service<Request<B>>>::Future
Auto Trait Implementations§
impl<S, F, T> Freeze for HandleError<S, F, T>
impl<S, F, T> RefUnwindSafe for HandleError<S, F, T>where
S: RefUnwindSafe,
F: RefUnwindSafe,
impl<S, F, T> Send for HandleError<S, F, T>
impl<S, F, T> Sync for HandleError<S, F, T>
impl<S, F, T> Unpin for HandleError<S, F, T>
impl<S, F, T> UnsafeUnpin for HandleError<S, F, T>where
S: UnsafeUnpin,
F: UnsafeUnpin,
impl<S, F, T> UnwindSafe for HandleError<S, F, T>where
S: UnwindSafe,
F: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
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<M, S, Target, Request> MakeService<Target, Request> for M
impl<M, S, Target, Request> MakeService<Target, Request> for M
Source§fn poll_ready(
&mut self,
cx: &mut Context<'_>,
) -> Poll<Result<(), <M as MakeService<Target, Request>>::MakeError>>
fn poll_ready( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<(), <M as MakeService<Target, Request>>::MakeError>>
Poll::Ready when the factory is able to create more services. Read moreSource§fn make_service(
&mut self,
target: Target,
) -> <M as MakeService<Target, Request>>::Future
fn make_service( &mut self, target: Target, ) -> <M as MakeService<Target, Request>>::Future
Source§fn into_service(self) -> IntoService<Self, Request>where
Self: Sized,
fn into_service(self) -> IntoService<Self, Request>where
Self: Sized,
Source§fn as_service(&mut self) -> AsService<'_, Self, Request>where
Self: Sized,
fn as_service(&mut self) -> AsService<'_, Self, Request>where
Self: Sized,
impl<T> OrderedSeq<'_, T> for Twhere
T: Clone,
Source§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the foreground set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red() and
green(), which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg():
use yansi::{Paint, Color};
painted.fg(Color::White);Set foreground color to white using white().
use yansi::Paint;
painted.white();Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the background set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red() and
on_green(), which have the same functionality but
are pithier.
§Example
Set background color to red using fg():
use yansi::{Paint, Color};
painted.bg(Color::Red);Set background color to red using on_red().
use yansi::Paint;
painted.on_red();Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute value.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold() and
underline(), which have the same functionality
but are pithier.
§Example
Make text bold using attr():
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);Make text bold using using bold().
use yansi::Paint;
painted.bold();Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi Quirk value.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask() and
wrap(), which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk():
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);Enable wrapping using wrap().
use yansi::Paint;
painted.wrap();Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
fn clear(&self) -> Painted<&T>
renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted only when both stdout and stderr are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
Source§impl<S, R> ServiceExt<R> for Swhere
S: Service<R>,
impl<S, R> ServiceExt<R> for Swhere
S: Service<R>,
Source§fn into_make_service(self) -> IntoMakeService<S>
fn into_make_service(self) -> IntoMakeService<S>
MakeService, that is a Service whose
response is another service. Read moreSource§fn into_make_service_with_connect_info<C>(
self,
) -> IntoMakeServiceWithConnectInfo<S, C>
fn into_make_service_with_connect_info<C>( self, ) -> IntoMakeServiceWithConnectInfo<S, C>
MakeService, that will store C’s
associated ConnectInfo in a request extension such that ConnectInfo
can extract it. Read moreSource§fn handle_error<F, T>(self, f: F) -> HandleError<Self, F, T>
fn handle_error<F, T>(self, f: F) -> HandleError<Self, F, T>
HandleError, that will handle errors
by converting them into responses. Read moreSource§impl<T, Request> ServiceExt<Request> for T
impl<T, Request> ServiceExt<Request> for T
Source§fn ready(&mut self) -> Ready<'_, Self, Request> ⓘwhere
Self: Sized,
fn ready(&mut self) -> Ready<'_, Self, Request> ⓘwhere
Self: Sized,
Source§fn ready_oneshot(self) -> ReadyOneshot<Self, Request> ⓘwhere
Self: Sized,
fn ready_oneshot(self) -> ReadyOneshot<Self, Request> ⓘwhere
Self: Sized,
Source§fn oneshot(self, req: Request) -> Oneshot<Self, Request> ⓘwhere
Self: Sized,
fn oneshot(self, req: Request) -> Oneshot<Self, Request> ⓘwhere
Self: Sized,
Service, calling it with the provided request once it is ready.Source§fn and_then<F>(self, f: F) -> AndThen<Self, F>
fn and_then<F>(self, f: F) -> AndThen<Self, F>
poll_ready method. Read moreSource§fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F>
poll_ready method. Read moreSource§fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
fn map_err<F, Error>(self, f: F) -> MapErr<Self, F>
poll_ready method. Read moreSource§fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
fn map_result<F, Response, Error>(self, f: F) -> MapResult<Self, F>
Result<Self::Response, Self::Error>)
to a different value, regardless of whether the future succeeds or
fails. Read moreSource§fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F>
Source§fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>
fn then<F, Response, Error, Fut>(self, f: F) -> Then<Self, F>
Source§fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>
fn map_future<F, Fut, Response, Error>(self, f: F) -> MapFuture<Self, F>
Source§impl<T, S> SpanWrap<S> for Twhere
S: WrappingSpan<T>,
impl<T, S> SpanWrap<S> for Twhere
S: WrappingSpan<T>,
Source§fn with_span(self, span: S) -> <S as WrappingSpan<Self>>::Spanned
fn with_span(self, span: S) -> <S as WrappingSpan<Self>>::Spanned
WrappingSpan::make_wrapped to wrap an AST node in a span.