Implement Clone for Time

- Clap 4 wants to clone values.
This commit is contained in:
Neal H. Walfield 2023-03-16 15:46:32 +01:00
parent 936ae250e1
commit 9eb1e0fa7d
No known key found for this signature in database
GPG Key ID: 6863C9AD5B4D22D3

View File

@ -131,7 +131,7 @@ impl<'a> std::fmt::Display for SessionKeyDisplay<'a> {
}
}
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct Time {
pub time: DateTime<Utc>,
}