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 super::super::super::EnumTrait;
use std::str::FromStr;
#[derive(Clone, Debug)]
pub enum LegendPositionValues {
    Bottom,
    Left,
    Right,
    Top,
    TopRight,
}
impl Default for LegendPositionValues {
    fn default() -> Self {
        Self::Bottom
    }
}
impl EnumTrait for LegendPositionValues {
    fn get_value_string(&self) -> &str {
        match &self {
            Self::Bottom => "b",
            Self::Left => "l",
            Self::Right => "r",
            Self::Top => "t",
            Self::TopRight => "tr",
        }
    }
}
impl FromStr for LegendPositionValues {
    type Err = ();
    fn from_str(input: &str) -> Result<Self, Self::Err> {
        match input {
            "b" => Ok(Self::Bottom),
            "l" => Ok(Self::Left),
            "r" => Ok(Self::Right),
            "t" => Ok(Self::Top),
            "tr" => Ok(Self::TopRight),
            _ => Err(()),
        }
    }
}