pub trait IndexTraitConst {
// Required method
fn as_raw_Index(&self) -> *const c_void;
// Provided methods
fn save(&self, filename: &str) -> Result<()> { ... }
fn get_distance(&self) -> Result<flann_distance_t> { ... }
fn get_algorithm(&self) -> Result<flann_algorithm_t> { ... }
}
Expand description
Constant methods for crate::flann::Index