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.
Required Associated Types§
Required Methods§
Sourcefn push_front(self, value: T) -> Self::Output
fn push_front(self, value: T) -> Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".