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