pub trait Optimizer {
type Point;
// Required method
fn best_point(&self) -> Self::Point;
}Expand description
Running optimizer methods independent of configuration and state.
Required Associated Types§
Required Methods§
Sourcefn best_point(&self) -> Self::Point
fn best_point(&self) -> Self::Point
Return the best point discovered.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".