pub trait Prepend<T> {
type Output;
// Required method
fn prepend(self, other: T) -> Self::Output;
}Expand description
Helper trait to allow Perpending of tuples
pub trait Prepend<T> {
type Output;
// Required method
fn prepend(self, other: T) -> Self::Output;
}Helper trait to allow Perpending of tuples