pub trait RgbdPlaneTraitConst: AlgorithmTraitConst {
// Required method
fn as_raw_RgbdPlane(&self) -> *const c_void;
// Provided methods
fn get_block_size(&self) -> Result<i32> { ... }
fn get_min_size(&self) -> Result<i32> { ... }
fn get_method(&self) -> Result<i32> { ... }
fn get_threshold(&self) -> Result<f64> { ... }
fn get_sensor_error_a(&self) -> Result<f64> { ... }
fn get_sensor_error_b(&self) -> Result<f64> { ... }
fn get_sensor_error_c(&self) -> Result<f64> { ... }
}
Expand description
Constant methods for crate::rgbd::RgbdPlane
Required Methods§
fn as_raw_RgbdPlane(&self) -> *const c_void
Provided Methods§
fn get_block_size(&self) -> Result<i32>
fn get_min_size(&self) -> Result<i32>
fn get_method(&self) -> Result<i32>
fn get_threshold(&self) -> Result<f64>
fn get_sensor_error_a(&self) -> Result<f64>
fn get_sensor_error_b(&self) -> Result<f64>
fn get_sensor_error_c(&self) -> Result<f64>
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.