pub trait ConvertTuple {
type Output;
// Required method
fn convert_tuple(self) -> Self::Output;
}Expand description
Converts a tuple to another one, where the fields of the old tuple can be Convert-ed into the fiedls of the new tuple. See Convert.