usecrate::cycle::{AddrTransitions, TxAdded, TxRemoved};/// Per-cycle accumulator threaded through the pipeline steps and
/// drained into the public [`crate::Cycle`] at end of cycle.
#[derive(Default)]pubstructCycleDiff{pubadded:Vec<TxAdded>,
pubremoved:Vec<TxRemoved>,
pubaddrs: AddrTransitions,
}