pub trait UriToParsed:
Sync
+ Send
+ 'static {
type Item: Sync + Send + 'static;
// Required method
fn convert(&self, u: &Uri) -> Result<Self::Item, Error>;
}pub trait UriToParsed:
Sync
+ Send
+ 'static {
type Item: Sync + Send + 'static;
// Required method
fn convert(&self, u: &Uri) -> Result<Self::Item, Error>;
}