pub trait IntoKey {
// Required method
fn get_key(
&self,
) -> impl Future<Output = Result<SecretKey<NistP256>, KeyError>> + Send;
}Expand description
A trait for getting a key from a source. See IntoKey::get_key for more details.
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.