pub trait MatStepTraitConst {
// Required method
fn as_raw_MatStep(&self) -> *const c_void;
// Provided methods
fn p(&self) -> &[size_t; 10] { ... }
unsafe fn get(&self, i: i32) -> size_t { ... }
fn to_size_t(&self) -> Result<size_t> { ... }
}Expand description
Constant methods for core::MatStep
Required Methods§
fn as_raw_MatStep(&self) -> *const c_void
Provided Methods§
fn p(&self) -> &[size_t; 10]
unsafe fn get(&self, i: i32) -> size_t
fn to_size_t(&self) -> Result<size_t>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".