pub trait SimdCombine<S: Simd>: SimdBase<S> {
type Combined: SimdBase<S, Element = Self::Element, Block = Self::Block>;
// Required method
fn combine(self, rhs: impl SimdInto<Self, S>) -> Self::Combined;
}Expand description
Concatenation of two SIMD vectors.
This is implemented on all vectors 256 bits and lower, producing vectors of up to 512 bits.
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.