pub trait NestedTupleAppend<T> {
type Output;
// Required method
fn append(self, t: T) -> Self::Output;
}Expand description
Allows to append at the end of a nested tuple list.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".