ockam_identity 0.134.0

Ockam is a library for building devices that communicate securely, privately and trustfully with cloud services and other devices.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Result of comparison of current `IdentityChangeHistory` to the `IdentityChangeHistory`
/// of the same Identity, that was known to us earlier
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum IdentityHistoryComparison {
    /// No difference
    Equal,
    /// Some changes don't match between current identity and known identity
    Conflict,
    /// Current identity is more recent than known identity
    Newer,
    /// Known identity is more recent
    Older,
}