pub trait FixedSizeArray {
const LEN: usize;
}
Expand description
Types that may be used as a constant-length buffer underlying a Bounded
ring buffer.
Required Associated Constants§
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.