pub trait URIHandlerImplStatic<T: ObjectType>:
Send
+ Sync
+ 'static {
// Required methods
fn get_impl<'a>(&self, imp: &'a T::ImplType) -> &'a dyn URIHandlerImpl;
fn get_type(&self) -> URIType;
fn get_protocols(&self) -> Vec<String>;
}