pub trait URIHandlerImpl:
AnyImpl
+ Send
+ Sync
+ 'static {
// Required methods
fn get_uri(&self, element: &URIHandler) -> Option<String>;
fn set_uri(
&self,
element: &URIHandler,
uri: Option<String>,
) -> Result<(), Error>;
}