pub trait Unflatten<M>where
M: ArraySize,{
type Part;
// Required method
fn unflatten(self) -> Array<Self::Part, M>;
}Expand description
Defines a sequence that can be split into a sequence of smaller sequences of uniform size.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".