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
50
51
52
53
//! Custom error

use std::error::Error;
use std::fmt::{Display, Formatter, Result as FmtResult};

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

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

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

    /// Get error message
    pub fn err_msg(&self) -> &str {
        &self.0
    }
}

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

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