pub trait IntoSecretKey<U: Key> {
    // Required method
    fn into_sk(self) -> U::SecretKey;
}
Expand description

A value -> SecretKey conversion that consumes the input value. The opposite of SecretKeyFrom.

Required Methods§

source

fn into_sk(self) -> U::SecretKey

Implementors§

source§

impl<T, U> IntoSecretKey<U> for Twhere U: SecretKeyFrom<T>,