pub struct InsertMatrixIntoMatrix {}
Implementations§
Trait Implementations§
source§impl Clone for InsertMatrixIntoMatrix
impl Clone for InsertMatrixIntoMatrix
source§fn clone(&self) -> InsertMatrixIntoMatrix
fn clone(&self) -> InsertMatrixIntoMatrix
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InsertMatrixIntoMatrix
impl Debug for InsertMatrixIntoMatrix
source§impl<AccumulatorEvaluationDomain: ValueType> InsertMatrixIntoMatrixTrait<AccumulatorEvaluationDomain> for InsertMatrixIntoMatrix
impl<AccumulatorEvaluationDomain: ValueType> InsertMatrixIntoMatrixTrait<AccumulatorEvaluationDomain> for InsertMatrixIntoMatrix
source§fn apply(
&self,
matrix_to_insert_into: &mut (impl GetGraphblasSparseMatrix + GetContext),
rows_to_insert_into: &ElementIndexSelector<'_>,
columns_to_insert_into: &ElementIndexSelector<'_>,
matrix_to_insert: &(impl GetGraphblasSparseMatrix + GetContext),
accumulator: &impl AccumulatorBinaryOperator<AccumulatorEvaluationDomain>,
options: &OperatorOptions
) -> Result<(), SparseLinearAlgebraError>
fn apply( &self, matrix_to_insert_into: &mut (impl GetGraphblasSparseMatrix + GetContext), rows_to_insert_into: &ElementIndexSelector<'_>, columns_to_insert_into: &ElementIndexSelector<'_>, matrix_to_insert: &(impl GetGraphblasSparseMatrix + GetContext), accumulator: &impl AccumulatorBinaryOperator<AccumulatorEvaluationDomain>, options: &OperatorOptions ) -> Result<(), SparseLinearAlgebraError>
replace option applies to entire matrix_to_insert_to
source§fn apply_with_mask(
&self,
matrix_to_insert_into: &mut (impl GetGraphblasSparseMatrix + GetContext),
rows_to_insert_into: &ElementIndexSelector<'_>,
columns_to_insert_into: &ElementIndexSelector<'_>,
matrix_to_insert: &(impl GetGraphblasSparseMatrix + GetContext),
accumulator: &impl AccumulatorBinaryOperator<AccumulatorEvaluationDomain>,
mask_for_matrix_to_insert_into: &(impl GetGraphblasSparseMatrix + GetContext),
options: &OperatorOptions
) -> Result<(), SparseLinearAlgebraError>
fn apply_with_mask( &self, matrix_to_insert_into: &mut (impl GetGraphblasSparseMatrix + GetContext), rows_to_insert_into: &ElementIndexSelector<'_>, columns_to_insert_into: &ElementIndexSelector<'_>, matrix_to_insert: &(impl GetGraphblasSparseMatrix + GetContext), accumulator: &impl AccumulatorBinaryOperator<AccumulatorEvaluationDomain>, mask_for_matrix_to_insert_into: &(impl GetGraphblasSparseMatrix + GetContext), options: &OperatorOptions ) -> Result<(), SparseLinearAlgebraError>
mask and replace option apply to entire matrix_to_insert_to
impl Send for InsertMatrixIntoMatrix
impl Sync for InsertMatrixIntoMatrix
Auto Trait Implementations§
impl RefUnwindSafe for InsertMatrixIntoMatrix
impl Unpin for InsertMatrixIntoMatrix
impl UnwindSafe for InsertMatrixIntoMatrix
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more