pub trait Bucket {
type BucketType: Fundemental;
const BUCKET_COUNT: usize;
// Required method
fn split(&self) -> [Self::BucketType; Self::BUCKET_COUNT];
}Required Associated Constants§
const BUCKET_COUNT: usize
Required Associated Types§
type BucketType: Fundemental
Required Methods§
fn split(&self) -> [Self::BucketType; Self::BUCKET_COUNT]
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.