Trait MatStepTraitConst

Source
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

Required Methods§

Provided Methods§

Source

fn p(&self) -> *const size_t

Source

fn buf(&self) -> &[size_t; 2]

Source

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

Source

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

Implementors§