[][src]Struct flann_sys::FLANNParameters

#[repr(C)]
pub struct FLANNParameters { pub algorithm: flann_algorithm_t, pub checks: c_int, pub eps: f32, pub sorted: c_int, pub max_neighbors: c_int, pub cores: c_int, pub trees: c_int, pub leaf_max_size: c_int, pub branching: c_int, pub iterations: c_int, pub centers_init: flann_centers_init_t, pub cb_index: f32, pub target_precision: f32, pub build_weight: f32, pub memory_weight: f32, pub sample_fraction: f32, pub table_number_: c_uint, pub key_size_: c_uint, pub multi_probe_level_: c_uint, pub log_level: flann_log_level_t, pub random_seed: c_long, }

Fields

algorithm: flann_algorithm_tchecks: c_inteps: f32sorted: c_intmax_neighbors: c_intcores: c_inttrees: c_intleaf_max_size: c_intbranching: c_intiterations: c_intcenters_init: flann_centers_init_tcb_index: f32target_precision: f32build_weight: f32memory_weight: f32sample_fraction: f32table_number_: c_uintkey_size_: c_uint

The number of hash tables to use

multi_probe_level_: c_uint

The length of the key in the hash tables

log_level: flann_log_level_t

Number of levels to use in multi-probe LSH, 0 for standard LSH

random_seed: c_long

Trait Implementations

impl Copy for FLANNParameters[src]

impl Clone for FLANNParameters[src]

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

Performs copy-assignment from source. Read more

impl Debug for FLANNParameters[src]

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

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.