pub trait BackupLike {
// Required methods
fn end_time(&self) -> DateTime<Utc>;
fn id(&self) -> &str;
}Expand description
Anything that can stand in for a Backup during retention selection. Kept tiny
so tests use trivial fakes instead of constructing full Backup CRs.