pub trait FitResult {
// Required methods
fn objf(&self) -> f64;
fn converged(&self) -> bool;
fn summary(&self) -> FitSummary;
fn population_summary(&self) -> PopulationSummary;
fn individual_summaries(&self) -> Vec<IndividualSummary>;
}Expand description
A shared trait for the output of any estimation algorithm.