pub trait ComponentMul: Sized {
// Required method
fn component_mul(&self, other: &Self) -> Self;
}Expand description
Extension trait for element-wise vector operations
Required Methods§
Sourcefn component_mul(&self, other: &Self) -> Self
fn component_mul(&self, other: &Self) -> Self
Element-wise multiplication
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.