pub trait URIHandlerExt {
    fn get_protocols(&self) -> Vec<String>;
    fn get_uri(&self) -> Option<String>;
    fn get_uri_type(&self) -> URIType;
    fn set_uri(&self, uri: &str) -> Result<(), Error>;
}

Required Methods

Implementors