pub trait VectorSum:
CubePrimitive
+ CubeType<ExpandType: VectorSumExpand + CubePrimitiveExpand<Scalar = NativeExpand<Self::Scalar>>>
+ Sized {
// Provided methods
fn vector_sum(self) -> Self { ... }
fn __expand_vector_sum(
scope: &mut Scope,
x: NativeExpand<Self>,
) -> NativeExpand<Self::Scalar> { ... }
}Provided Methods§
fn vector_sum(self) -> Self
fn __expand_vector_sum( scope: &mut Scope, x: NativeExpand<Self>, ) -> NativeExpand<Self::Scalar>
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.