pub trait SimplicityKey: Clone + Eq + Ord + Debug + Display + Hash {
    type Sha256: Clone + Eq + Ord + Display + Debug + Hash;
}
Expand description

Public key which can be converted to a hash type.

Required Associated Types§

source

type Sha256: Clone + Eq + Ord + Display + Debug + Hash

SHA 256 hash associated with this key, used in the sha256 fragment.

Object Safety§

This trait is not object safe.

Implementors§