useserde::{Deserialize, Serialize};/// Summary of a cooking session
////// Tracks the progress and results of a single `prodigy cook` run.
#[derive(Debug, Clone, Serialize, Deserialize)]pubstructSessionSummary{pubiterations:usize,
pubfiles_changed:usize,
}