pub trait ApplyElementWiseMatrixAdditionBinaryOperator<EvaluationDomain: ValueType> {
// Required method
fn apply(
&self,
multiplier: &impl GetGraphblasSparseMatrix,
operator: &impl BinaryOperator<EvaluationDomain>,
multiplicant: &impl GetGraphblasSparseMatrix,
accumulator: &impl AccumulatorBinaryOperator<EvaluationDomain>,
product: &mut impl GetGraphblasSparseMatrix,
mask: &impl MatrixMask,
options: &impl GetOptionsForOperatorWithMatrixArguments,
) -> Result<(), SparseLinearAlgebraError>;
}
Required Methods§
fn apply( &self, multiplier: &impl GetGraphblasSparseMatrix, operator: &impl BinaryOperator<EvaluationDomain>, multiplicant: &impl GetGraphblasSparseMatrix, accumulator: &impl AccumulatorBinaryOperator<EvaluationDomain>, product: &mut impl GetGraphblasSparseMatrix, mask: &impl MatrixMask, options: &impl GetOptionsForOperatorWithMatrixArguments, ) -> Result<(), SparseLinearAlgebraError>
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.