pub trait PushBack<Back> {
type Output;
// Required method
fn push_back(self, back: Back) -> Self::Output;
}Expand description
Adds a Back value to the tuple, as the last field.
pub trait PushBack<Back> {
type Output;
// Required method
fn push_back(self, back: Back) -> Self::Output;
}Adds a Back value to the tuple, as the last field.