Trait DepthCleanerTrait

Source
pub trait DepthCleanerTrait: AlgorithmTrait + DepthCleanerTraitConst {
    // Required method
    fn as_raw_mut_DepthCleaner(&mut self) -> *mut c_void;

    // Provided methods
    fn set_window_size(&mut self, val: i32) -> Result<()> { ... }
    fn set_depth(&mut self, val: i32) -> Result<()> { ... }
    fn set_method(&mut self, val: i32) -> Result<()> { ... }
}
Expand description

Mutable methods for crate::rgbd::DepthCleaner

Required Methods§

Provided Methods§

Source

fn set_window_size(&mut self, val: i32) -> Result<()>

Source

fn set_depth(&mut self, val: i32) -> Result<()>

Source

fn set_method(&mut self, val: i32) -> 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.

Implementors§