datastore: drop Ord from BackupGroup

This one is supposed to be linked to a datastore instance,
so it won't be Ord for now.

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller
2022-04-20 12:20:28 +02:00
parent db87d93efc
commit 5116453b6d
3 changed files with 10 additions and 10 deletions

View File

@ -8,20 +8,14 @@ use pbs_api_types::{BackupType, GroupFilter, BACKUP_DATE_REGEX, BACKUP_FILE_REGE
use super::manifest::MANIFEST_BLOB_NAME;
/// BackupGroup is a directory containing a list of BackupDir
#[derive(Debug, Eq, PartialEq, Hash, Clone)]
#[derive(Debug, PartialEq, Hash, Clone)]
pub struct BackupGroup {
group: pbs_api_types::BackupGroup,
}
impl std::cmp::Ord for BackupGroup {
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
self.group.cmp(&other.group)
}
}
impl std::cmp::PartialOrd for BackupGroup {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
Some(self.cmp(other))
Some(self.group.cmp(&other.group))
}
}
@ -32,6 +26,12 @@ impl BackupGroup {
}
}
/// Access the underlying [`BackupGroup`](pbs_api_types::BackupGroup).
#[inline]
pub fn group(&self) -> &pbs_api_types::BackupGroup {
&self.group
}
pub fn backup_type(&self) -> BackupType {
self.group.ty
}