pub unsafe trait Unflatten<T, NM, N>: GenericSequence<T, Length = NM>{
type Output: GenericSequence<GenericArray<T, N>, Length = Quot<NM, N>>;
// Required method
fn unflatten(self) -> Self::Output;
}Expand description
Required Associated Types§
Sourcetype Output: GenericSequence<GenericArray<T, N>, Length = Quot<NM, N>>
type Output: GenericSequence<GenericArray<T, N>, Length = Quot<NM, N>>
Unflattened sequence type
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".