pub struct BruteForce { /* private fields */ }
Expand description

Perform brute-force search

Implementations

Constructs new brute-force search. BruteForce accepts no parapeters.

Examples
use rusty_machine::learning::knn::BruteForce;
let _ = BruteForce::new();

Trait Implementations

Formats the value using the given formatter. Read more

Constructs new brute-force search

Examples
use rusty_machine::learning::knn::BruteForce;
let _ = BruteForce::default();

Can search K-nearest items

initialize BruteForce Searcher

Serch k-nearest items close to the point

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.