pub trait URIHandlerExt: IsA<URIHandler> + 'static {
// Provided methods
fn protocols(&self) -> Vec<GString> { ... }
fn uri(&self) -> Option<GString> { ... }
fn uri_type(&self) -> URIType { ... }
fn set_uri(&self, uri: &str) -> Result<(), Error> { ... }
}Provided Methods§
fn protocols(&self) -> Vec<GString>
fn uri(&self) -> Option<GString>
fn uri_type(&self) -> URIType
fn set_uri(&self, uri: &str) -> Result<(), Error>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.