Function axum::routing::method_routing::head_service

source ·
pub fn head_service<T, S, B>(svc: T) -> MethodRouter<S, B, T::Error>
where T: Service<Request<B>> + Clone + Send + 'static, T::Response: IntoResponse + 'static, T::Future: Send + 'static, B: HttpBody + Send + 'static, S: Clone,
Expand description

Route HEAD requests to the given service.

See get_service for an example.