pub type EvaluateBatchEntry = (String, Duration, u64, Vec<(String, String)>);Expand description
One object the evaluator considers in a batch:
(key, object_age, object_size, object_tags). Defined as a type alias
so evaluate_batch / crate::S4Service::run_lifecycle_once_for_test
don’t trip clippy’s type-complexity lint, and so callers building the
list have a single canonical shape to reach for.