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(&mut self) -> *mut u8 { ... }
    unsafe fn set_ptr(&mut self, val: *const u8) { ... }
    fn set(&mut self, it: &impl SparseMatConstIteratorTraitConst) -> Result<()> { ... }
    fn incr(&mut self) -> Result<SparseMatConstIterator> { ... }
    fn seek_end(&mut self) -> Result<()> { ... }
}
Expand description

Mutable methods for core::SparseMatConstIterator

Required Methods§

Provided Methods§

source

fn set_hashidx(&mut self, val: size_t)

source

fn ptr_mut(&mut self) -> *mut u8

source

unsafe fn set_ptr(&mut self, val: *const u8)

source

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

the assignment operator

source

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

moves iterator to the next element

source

fn seek_end(&mut self) -> Result<()>

moves iterator to the element after the last element

Object Safety§

This trait is not object safe.

Implementors§