pub trait TupleAppend<T> {
type Output;
// Required method
fn append(self, value: T) -> Self::Output;
}Expand description
Append a value to a tuple, producing a tuple one element longer.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".