pub trait DataRegistryKey {
type Borrow<'a>: DataRegistryKeyRef<'a>;
// Required method
fn into_ident(self) -> Identifier;
}Required Associated Types§
type Borrow<'a>: DataRegistryKeyRef<'a>
Required Methods§
fn into_ident(self) -> Identifier
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.