pub trait LineMod_DepthNormalTraitConst: LineMod_ModalityTraitConst {
// Required method
fn as_raw_LineMod_DepthNormal(&self) -> *const c_void;
// Provided methods
fn distance_threshold(&self) -> i32 { ... }
fn difference_threshold(&self) -> i32 { ... }
fn num_features(&self) -> size_t { ... }
fn extract_threshold(&self) -> i32 { ... }
fn name(&self) -> Result<String> { ... }
fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()> { ... }
}
Expand description
Constant methods for crate::rgbd::LineMod_DepthNormal
Required Methods§
fn as_raw_LineMod_DepthNormal(&self) -> *const c_void
Provided Methods§
fn distance_threshold(&self) -> i32
fn difference_threshold(&self) -> i32
fn num_features(&self) -> size_t
fn extract_threshold(&self) -> i32
fn name(&self) -> Result<String>
fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>
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.