pub trait LineMod_TemplateTraitConst {
// Required method
fn as_raw_LineMod_Template(&self) -> *const c_void;
// Provided methods
fn width(&self) -> i32 { ... }
fn height(&self) -> i32 { ... }
fn pyramid_level(&self) -> i32 { ... }
fn features(&self) -> Vector<LineMod_Feature> { ... }
fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()> { ... }
}
Expand description
Constant methods for crate::rgbd::LineMod_Template
Required Methods§
fn as_raw_LineMod_Template(&self) -> *const c_void
Provided Methods§
fn width(&self) -> i32
fn height(&self) -> i32
fn pyramid_level(&self) -> i32
fn features(&self) -> Vector<LineMod_Feature>
fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>
Object Safety§
This trait is not object safe.