This crate provides extended functionality for handling http semantics, that integrates into [`hyper`](https://docs.rs/hyper/latest/hyper/index.html) ecosystem.
//! I define traits to define namespaced infallible http
//! services.
//!usesuper::HttpService;usecrate::uri::invariant::NormalAbsoluteHttpUri;/// A trait for infallible http services, which are defined against a bounded uri namespace.
pubtraitNamespacedHttpService<ReqBody, ResBody>: HttpService<ReqBody, ResBody> {/// Check if given uri is in target namespace of this service.
fnhas_in_uri_ns(&self, uri:&NormalAbsoluteHttpUri)->bool;}