Skip to main content

SparseMatIteratorTrait

Trait SparseMatIteratorTrait 

Source
pub trait SparseMatIteratorTrait: SparseMatConstIteratorTrait + SparseMatIteratorTraitConst {
    // Required method
    fn as_raw_mut_SparseMatIterator(&mut self) -> *mut c_void;

    // Provided methods
    fn set(&mut self, it: &impl SparseMatIteratorTraitConst) -> Result<()> { ... }
    fn incr(&mut self) -> Result<SparseMatIterator> { ... }
}
Expand description

Mutable methods for core::SparseMatIterator

Required Methods§

Provided Methods§

Source

fn set(&mut self, it: &impl SparseMatIteratorTraitConst) -> Result<()>

the assignment operator

Source

fn incr(&mut self) -> Result<SparseMatIterator>

moves iterator to the next element

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§