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

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

Required Methods§

source

fn into_sk_ref(&self) -> &U::SecretKey

Implementors§

source§

impl<T, U> IntoSecretKeyRef<U> for Twhere U: SecretKeyFromRef<T>,