pub trait MatStepTraitConst {
// Required method
fn as_raw_MatStep(&self) -> *const c_void;
// Provided methods
fn p(&self) -> *const size_t { ... }
fn buf(&self) -> &[size_t; 2] { ... }
fn get(&self, i: i32) -> size_t { ... }
fn to_size_t(&self) -> Result<size_t> { ... }
}
Expand description
Constant methods for core::MatStep