pub trait VRFPrivateKey {
type PublicKey: VRFPublicKey<PrivateKey = Self>;
}Expand description
Represents a private key used to compute outputs for a verifiable random function (VRF).
Required Associated Types§
type PublicKey: VRFPublicKey<PrivateKey = Self>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".