pub struct ReconcileContext {
pub generation: u64,
pub reconciled: usize,
pub skipped: usize,
pub created: usize,
pub removed: usize,
}
impl ReconcileContext {
pub fn new(generation: u64) -> Self {
Self {
generation,
reconciled: 0,
skipped: 0,
created: 0,
removed: 0,
}
}
}