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.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".