Trait AdaptiveManifoldFilterTraitConst

Source
pub trait AdaptiveManifoldFilterTraitConst: AlgorithmTraitConst {
    // Required method
    fn as_raw_AdaptiveManifoldFilter(&self) -> *const c_void;

    // Provided methods
    fn get_sigma_s(&self) -> Result<f64> { ... }
    fn get_sigma_r(&self) -> Result<f64> { ... }
    fn get_tree_height(&self) -> Result<i32> { ... }
    fn get_pca_iterations(&self) -> Result<i32> { ... }
    fn get_adjust_outliers(&self) -> Result<bool> { ... }
    fn get_use_rng(&self) -> Result<bool> { ... }
}
Expand description

Required Methods§

Provided Methods§

Source

fn get_sigma_s(&self) -> Result<f64>

§See also

setSigmaS

Source

fn get_sigma_r(&self) -> Result<f64>

§See also

setSigmaR

Source

fn get_tree_height(&self) -> Result<i32>

§See also

setTreeHeight

Source

fn get_pca_iterations(&self) -> Result<i32>

§See also

setPCAIterations

Source

fn get_adjust_outliers(&self) -> Result<bool>

§See also

setAdjustOutliers

Source

fn get_use_rng(&self) -> Result<bool>

§See also

setUseRNG

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§