pub trait TuplePushBack<T> {
type Output;
// Required method
fn push_back(self, value: T) -> Self::Output;
}Expand description
A trait for tuples that allows pushing an element to the back.
pub trait TuplePushBack<T> {
type Output;
// Required method
fn push_back(self, value: T) -> Self::Output;
}A trait for tuples that allows pushing an element to the back.