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
40
41
42
43
44
45
46
47
48
49
use std::{error, fmt, str};
use string::SafeString;

/// An error object.
#[repr(C)]
#[derive(Clone, PartialEq)]
pub struct Error {
    desc: SafeString,
}

impl Error {
    /// Creates a new Error.
    pub fn new(desc: &str) -> Error {
        Self {
            desc: SafeString::from(desc),
        }
    }
}

impl fmt::Debug for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Error: {}", error::Error::description(self))
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", error::Error::description(self))
    }
}

impl error::Error for Error {
    fn description(&self) -> &str {
        &self.desc
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::error;

    #[test]
    fn description() {
        let msg = "out of bounds";
        let err = Error::new(msg);
        assert_eq!(error::Error::description(&err), msg);
    }
}