src/backup/backup_info.rs: Derive Clone

This commit is contained in:
Dietmar Maurer 2019-05-10 06:59:23 +02:00
parent 0506d1ed04
commit 35a2d8a6a6
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ lazy_static!{
}
/// BackupGroup is a directory containing a list of BackupDir
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct BackupGroup {
/// Type of backup
backup_type: String,
@ -82,7 +82,7 @@ impl BackupGroup {
/// Uniquely identify a Backup (relative to data store)
///
/// We also call this a backup snaphost.
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct BackupDir {
/// Backup group
group: BackupGroup,