pub trait IntoKey<T>: Sized {
    // Required method
    fn into_key(self) -> T;
}

Required Methods§

source

fn into_key(self) -> T

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, U> IntoKey<U> for T
where U: FromKey<T>,