Deriving Clone for NopMonitor (#721)

This commit is contained in:
z2_ 2022-08-10 17:22:36 +02:00 committed by GitHub
parent 7d7601204f
commit faca7b9ac7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -239,7 +239,7 @@ pub trait Monitor {
/// Monitor that print exactly nothing.
/// Not good for debuging, very good for speed.
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct NopMonitor {
start_time: Duration,
client_stats: Vec<ClientStats>,