pub trait GridBoardTraitConst: BoardTraitConst {
// Required method
fn as_raw_GridBoard(&self) -> *const c_void;
// Provided methods
fn get_grid_size(&self) -> Result<Size> { ... }
fn get_marker_length(&self) -> Result<f32> { ... }
fn get_marker_separation(&self) -> Result<f32> { ... }
}
Expand description
Constant methods for crate::objdetect::GridBoard
Required Methods§
fn as_raw_GridBoard(&self) -> *const c_void
Provided Methods§
fn get_grid_size(&self) -> Result<Size>
fn get_marker_length(&self) -> Result<f32>
fn get_marker_separation(&self) -> Result<f32>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.