pub trait IntoArray<T> {
type Output: Len;
// Required method
fn into_array(self) -> Self::Output;
}Expand description
Converts a tuple into an array, where the fields of the tuple can be converted into the same type of the array element.