pub unsafe trait Unflatten<T, NM, N>: GenericSequence<T, Length = NM>where
NM: ArrayLength + Div<N>,
N: ArrayLength,
Quot<NM, N>: ArrayLength,
{
type Output: GenericSequence<GenericArray<T, N>, Length = Quot<NM, N>>;
// Required method
fn unflatten(self) -> Self::Output;
}Expand description
Source
Unflattened sequence type
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.