Trait BuildHashKernels

Source
pub trait BuildHashKernels
where Self: Sized,
{ type HK: HashKernels; // Required method fn with_k(self, k: usize, n: usize) -> Self::HK; // Provided method fn with_fp_rate(self, fp_rate: f64, n: usize) -> Self::HK { ... } }
Expand description

A trait for creating instances of HashKernels.

Required Associated Types§

Required Methods§

Source

fn with_k(self, k: usize, n: usize) -> Self::HK

Provided Methods§

Source

fn with_fp_rate(self, fp_rate: f64, n: usize) -> Self::HK

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.

Implementors§