datastore: drop Eq and PartialEq from BackupDir
Same as previous commit: this is supposed to be connected to a datastore and Eq/PartialEq only make sense for the api-type part. Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
5116453b6d
commit
cf320b6ba1
|
@ -205,7 +205,7 @@ impl From<&BackupDir> for BackupGroup {
|
||||||
/// Uniquely identify a Backup (relative to data store)
|
/// Uniquely identify a Backup (relative to data store)
|
||||||
///
|
///
|
||||||
/// We also call this a backup snaphost.
|
/// We also call this a backup snaphost.
|
||||||
#[derive(Debug, Eq, PartialEq, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct BackupDir {
|
pub struct BackupDir {
|
||||||
dir: pbs_api_types::BackupDir,
|
dir: pbs_api_types::BackupDir,
|
||||||
// backup_time as rfc3339
|
// backup_time as rfc3339
|
||||||
|
|
Loading…
Reference in New Issue