pub trait Niche {
type NeedsTag: Bit;
type N: ArrayLength;
type Next;
// Required method
fn niche() -> GenericArray<u8, Self::N>;
}Required Associated Types§
Required Methods§
fn niche() -> GenericArray<u8, Self::N>
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.