pub unsafe trait Vector<T: Scalar, const N: usize>: VectorOrScalar<Scalar = T> { }
Expand description
Abstract trait representing a SPIR-V vector type.
§Safety
Implementing this trait on non-simd-vector types breaks assumptions of other unsafe code, and should not be done.
Object Safety§
This trait is not object safe.