use derivative::Derivative;
use serde::{Deserialize, Serialize};
use crate::bson::{Document, Timestamp};
#[derive(Debug, Deserialize, Clone, Serialize, Derivative)]
#[derivative(PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct ClusterTime {
pub(crate) cluster_time: Timestamp,
#[derivative(PartialEq = "ignore")]
pub(crate) signature: Document,
}
impl std::cmp::Ord for ClusterTime {
fn cmp(&self, other: &ClusterTime) -> std::cmp::Ordering {
self.cluster_time.cmp(&other.cluster_time)
}
}
impl std::cmp::PartialOrd for ClusterTime {
fn partial_cmp(&self, other: &ClusterTime) -> Option<std::cmp::Ordering> {
Some(self.cmp(other))
}
}