pub unsafe trait Scalar: VectorOrScalar<Scalar = Self> + Copy + Default + Sealed { }
Expand description
Abstract trait representing a SPIR-V scalar type.
§Safety
Implementing this trait on non-scalar types breaks assumptions of other unsafe code, and should not be done.
Object Safety§
This trait is not object safe.