pub trait PushFront<Front> {
type Output;
// Required method
fn push_front(self, front: Front) -> Self::Output;
}Expand description
Adds a Front value to the tuple, as the first field.
pub trait PushFront<Front> {
type Output;
// Required method
fn push_front(self, front: Front) -> Self::Output;
}Adds a Front value to the tuple, as the first field.