pub trait JoinableTuple<T: JoinableTuple<Self>>: Tuple {
type Join: Tuple;
// Required method
fn join(self, other: T) -> Self::Join;
}Expand description
Tuples that can be joined together. Implemented for tuples of arity 0 to 32.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.