pub trait IntoHomoTuple<T> {
type Output: HomoTuple<T>;
// Required method
fn into_homo_tuple(self) -> Self::Output;
}Expand description
Converts a heterogeneous tuple to a homogeneous one.
pub trait IntoHomoTuple<T> {
type Output: HomoTuple<T>;
// Required method
fn into_homo_tuple(self) -> Self::Output;
}Converts a heterogeneous tuple to a homogeneous one.