pub trait ChunkLength<A>: Unsigned {
type SizedType;
}
Expand description
A trait used to decide the size of an array.
<N as ChunkLength<A>>::SizedType
for a type level integer N will have the
same size as [A; N]
.
Required Associated Types§
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.