pub trait URIRefTrait<'a>:
URIOrRefTrait
+ Copy
+ Into<URIRef<'a>> {
type Owned: URITrait<Ref<'a> = Self>;
// Required method
fn owned(self) -> Self::Owned;
}
Required Associated Typesยง
Required Methodsยง
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.