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