pub trait SaveHandler {
    fn save(&mut self, save_ctxt: &SaveContext<'_>, analysis: &Analysis);
}
Expand description

Defines what to do with the results of saving the analysis.

Required Methods

Implementors