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
use std::error;
use std::fmt;

/// Error structure
/// ```
/// extern crate kern;
/// use kern::Error;
///
/// fn do_something() -> Result<(), Error> {
///     let err = Error::new("This is an error");
///     Error::from(err)
/// }
///
/// println!("{}", do_something().unwrap_err());
/// ```
#[derive(Clone, Debug)]
pub struct Error(String);

// Error implementation
impl Error {
    /// Create Error from any Display
    pub fn new<E>(err: E) -> Self
    where
        E: fmt::Display,
    {
        Error(err.to_string())
    }

    /// Create Result with Error from any Display
    pub fn from<T, E>(err: E) -> Result<T, Self>
    where
        E: fmt::Display,
    {
        Err(Self::new(err))
    }
}

/// std::error::Error implementation for Error
impl error::Error for Error {}

/// Display implementation for Error
impl fmt::Display for Error {
    // fmt implementation
    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
        write!(formatter, "{}", self.0)
    }
}