[][src]Struct opencv::core::SparseMatIterator

pub struct SparseMatIterator { /* fields omitted */ }

Read-write Sparse Matrix Iterator

The class is similar to cv::SparseMatConstIterator, but can be used for in-place modification of the matrix elements.

Implementations

impl SparseMatIterator[src]

impl SparseMatIterator[src]

pub fn default() -> Result<SparseMatIterator>[src]

the default constructor

pub fn new(_m: &mut SparseMat) -> Result<SparseMatIterator>[src]

the full constructor setting the iterator to the first sparse matrix element

pub fn copy(it: &SparseMatIterator) -> Result<SparseMatIterator>[src]

the copy constructor

Trait Implementations

impl Boxed for SparseMatIterator[src]

impl Drop for SparseMatIterator[src]

impl Send for SparseMatIterator[src]

impl SparseMatConstIteratorTrait for SparseMatIterator[src]

impl SparseMatIteratorTrait for SparseMatIterator[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.