Trait axum::ServiceExt
source · pub trait ServiceExt<R>: Service<R> + Sized {
// Required methods
fn into_make_service(self) -> IntoMakeService<Self>;
fn into_make_service_with_connect_info<C>(
self,
) -> IntoMakeServiceWithConnectInfo<Self, C>;
// Provided method
fn handle_error<F, T>(self, f: F) -> HandleError<Self, F, T> { ... }
}
Expand description
Extension trait that adds additional methods to any Service
.
Required Methods§
sourcefn into_make_service(self) -> IntoMakeService<Self>
fn into_make_service(self) -> IntoMakeService<Self>
Convert this service into a MakeService
, that is a Service
whose
response is another service.
This is commonly used when applying middleware around an entire Router
. See “Rewriting
request URI in middleware” for more details.
sourcefn into_make_service_with_connect_info<C>(
self,
) -> IntoMakeServiceWithConnectInfo<Self, C>
fn into_make_service_with_connect_info<C>( self, ) -> IntoMakeServiceWithConnectInfo<Self, C>
Convert this service into a MakeService
, that will store C
’s
associated ConnectInfo
in a request extension such that ConnectInfo
can extract it.
This enables extracting things like the client’s remote address.
This is commonly used when applying middleware around an entire Router
. See “Rewriting
request URI in middleware” for more details.
Provided Methods§
sourcefn handle_error<F, T>(self, f: F) -> HandleError<Self, F, T>
fn handle_error<F, T>(self, f: F) -> HandleError<Self, F, T>
Convert this service into a HandleError
, that will handle errors
by converting them into responses.
See “error handling model” for more details.