useserde::{Deserialize, Serialize};/// Config which contains *replay* details on the *most recent* run example.
#[derive(Deserialize, Serialize, Default)]pubstructReplayConfig{/// Represents the *last run* example
publast_run: LastRun,
}/// The details on the *last run* example.
#[derive(Deserialize, Serialize, Default)]pubstructLastRun{/// Example *name*
pubname: String,
/// Example *arguments* passed in via command line
pubarguments:Vec<String>,
}