pub trait FromIndexKeyRef<'a>: Sized {
// Required method
fn from_index_key_ref(k: IndexKeyRef<'a>) -> Self;
}Expand description
Typed projection of a borrowed IndexKeyRef.
Like FromIndexKey but decodes from a borrow.
Required Methods§
fn from_index_key_ref(k: IndexKeyRef<'a>) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".