pub trait SparseMatConstIteratorTraitConst {
// Required method
fn as_raw_SparseMatConstIterator(&self) -> *const c_void;
// Provided methods
fn m(&self) -> SparseMat { ... }
fn hashidx(&self) -> size_t { ... }
fn ptr(&self) -> *const u8 { ... }
fn node(&self) -> Result<SparseMat_Node> { ... }
}
Expand description
Constant methods for core::SparseMatConstIterator
Required Methods§
fn as_raw_SparseMatConstIterator(&self) -> *const c_void
Provided Methods§
fn m(&self) -> SparseMat
fn hashidx(&self) -> size_t
fn ptr(&self) -> *const u8
Sourcefn node(&self) -> Result<SparseMat_Node>
fn node(&self) -> Result<SparseMat_Node>
returns the current node of the sparse matrix. it.node->idx is the current element index