pub trait VectorSum:
Sized
+ CubePrimitive
+ CubeType{
// 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".