pub trait URIHandlerImplExt: URIHandlerImpl {
// Provided methods
fn parent_protocols() -> Vec<String> { ... }
fn parent_uri(&self) -> Option<String> { ... }
fn parent_set_uri(&self, uri: &str) -> Result<(), Error> { ... }
}
Provided Methods§
fn parent_protocols() -> Vec<String>
fn parent_uri(&self) -> Option<String>
fn parent_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.