Trait opencv::prelude::SparseMatConstIteratorTrait
source · pub trait SparseMatConstIteratorTrait: SparseMatConstIteratorTraitConst {
// Required method
fn as_raw_mut_SparseMatConstIterator(&mut self) -> *mut c_void;
// Provided methods
fn set_hashidx(&mut self, val: size_t) { ... }
fn ptr(&mut self) -> *mut u8 { ... }
unsafe fn set_ptr(&mut self, val: *mut u8) { ... }
fn decr(&mut self) -> Result<SparseMatConstIterator> { ... }
fn incr(&mut self) -> Result<SparseMatConstIterator> { ... }
fn seek_end(&mut self) -> Result<()> { ... }
}
Expand description
Mutable methods for core::SparseMatConstIterator
Required Methods§
fn as_raw_mut_SparseMatConstIterator(&mut self) -> *mut c_void
Provided Methods§
fn set_hashidx(&mut self, val: size_t)
fn ptr(&mut self) -> *mut u8
unsafe fn set_ptr(&mut self, val: *mut u8)
sourcefn decr(&mut self) -> Result<SparseMatConstIterator>
fn decr(&mut self) -> Result<SparseMatConstIterator>
moves iterator to the previous element
sourcefn incr(&mut self) -> Result<SparseMatConstIterator>
fn incr(&mut self) -> Result<SparseMatConstIterator>
moves iterator to the next element