1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use std::{error, fmt, result};

/// CRDT Result alias to reduce redundency in function return types
pub(crate) type Result<T> = result::Result<T, Error>;

/// Possible CRDT error codes
#[derive(Debug, PartialEq)]
pub enum Error {
    /// A conflicting change to a CRDT is witnessed by a dot that already exists.
    ///
    /// We don't always check for this error case as it can be fairly expensive.
    /// Instead, users must design their system in a way that will make these
    /// dot collisions unlikely / impossible.
    ConflictingMarker,
}

impl error::Error for Error {
    fn description(&self) -> &str {
        match self {
            Error::ConflictingMarker => "Dot's are used exactly once for the lifetime of a CRDT",
        }
    }
    fn cause(&self) -> Option<&error::Error> {
        match self {
            Error::ConflictingMarker => None,
        }
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Error::ConflictingMarker => {
                use std::error::Error;
                write!(f, "{}", self.description())
            }
        }
    }
}