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
//! This crate defines types and traits for use with `enum-tryfrom-derive` See
//! the documentation of that crate for usage details.

use std::error::Error;
use std::fmt::Display;

#[derive(Debug)]
pub struct InvalidEnumValue(());

const DESCRIPTION : &'static str = "Attempted to convert invalid value to enum";

impl InvalidEnumValue {
    pub fn new() -> Self {
        InvalidEnumValue(())
    }
}

impl Display for InvalidEnumValue {
    fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
        DESCRIPTION.fmt(fmt)
    }
}

impl Error for InvalidEnumValue {
    fn description(&self) -> &str {
        DESCRIPTION
    }
}

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

    #[test]
    fn test_description() {
        assert_eq!(InvalidEnumValue::new().description(), DESCRIPTION);
    }
}