Trait HashCPU
pub trait HashCPU<Input, Output>: Clone + Debug {
// Required method
fn hash(inputs: &[Input]) -> Output;
}Expand description
The set of off-circuit instructions for hashing operations.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.