usestd::sync::atomic::AtomicU64;/// Counters populated during a single peer-cleanup pass.
////// After each cleanup run the counts are logged to the console and then
/// reset to zero in preparation for the next interval.
pubstructCleanupStats{/// Number of torrents whose peer maps were inspected.
pubtorrents: AtomicU64,
/// Number of timed-out seed entries removed.
pubseeds: AtomicU64,
/// Number of timed-out peer entries removed.
pubpeers: AtomicU64,
}