pub trait MatStepTraitConst {
    // Required method
    fn as_raw_MatStep(&self) -> *const c_void;

    // Provided methods
    fn get(&self, i: i32) -> size_t { ... }
    fn to_size_t(&self) -> Result<size_t> { ... }
}
Expand description

Constant methods for core::MatStep

Required Methods§

Provided Methods§

source

fn get(&self, i: i32) -> size_t

source

fn to_size_t(&self) -> Result<size_t>

Implementors§