Trait coins_bip32::ecdsa::signature::KeypairRef

source ·
pub trait KeypairRef: AsRef<Self::VerifyingKey> {
    type VerifyingKey: Clone;
}
Expand description

Signing keypair with an associated verifying key.

This represents a type which holds both a signing key and a verifying key.

Required Associated Types§

source

type VerifyingKey: Clone

Verifying key type for this keypair.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl KeypairRef for SigningKey

source§

impl<C> KeypairRef for SigningKey<C>

Implementors§