[][src]Struct flann::Parameters

pub struct Parameters {
    pub algorithm: Algorithm,
    pub checks: Checks,
    pub eps: f32,
    pub sorted: i32,
    pub max_neighbors: i32,
    pub cores: i32,
    pub trees: i32,
    pub leaf_max_size: i32,
    pub branching: i32,
    pub iterations: i32,
    pub centers_init: CentersInit,
    pub cb_index: f32,
    pub target_precision: f32,
    pub build_weight: f32,
    pub memory_weight: f32,
    pub sample_fraction: f32,
    pub table_number: u32,
    pub key_size: u32,
    pub multi_probe_level: u32,
    pub log_level: LogLevel,
    pub random_seed: c_long,
    pub rebuild_threshold: f32,
}

Fields

algorithm: Algorithmchecks: Checkseps: f32sorted: i32max_neighbors: i32cores: i32trees: i32leaf_max_size: i32branching: i32iterations: i32centers_init: CentersInitcb_index: f32target_precision: f32build_weight: f32memory_weight: f32sample_fraction: f32table_number: u32key_size: u32multi_probe_level: u32log_level: LogLevelrandom_seed: c_longrebuild_threshold: f32

Methods

impl Parameters[src]

Trait Implementations

impl Default for Parameters[src]

impl Clone for Parameters[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Into<FLANNParameters> for &'a Parameters[src]

impl Into<FLANNParameters> for Parameters[src]

impl Debug for Parameters[src]

Auto Trait Implementations

impl Send for Parameters

impl Sync for Parameters

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self