pub trait Merge<Other>: Sized {
type Output;
}
Expand description
Merging of two heterogeneous lists, resulting in a new heterogenous list where every element is
of type Either<Left, Right>
, where Left
is an element from the current list and Right
is
an element from the Other
list.
Required Associated Types§
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.