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