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

A value -> PublicKey conversion that consumes the input value. The opposite of PublicKeyFrom.

Required Methods§

source

fn into_pk(self) -> U

Implementors§

source§

impl<T, U> IntoPublicKey<U> for Twhere U: PublicKeyFrom<T>,