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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
use std::{error, fmt, str::FromStr};
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum MoleculeTopology {
Linear,
Circular,
}
impl AsRef<str> for MoleculeTopology {
fn as_ref(&self) -> &str {
match self {
Self::Linear => "linear",
Self::Circular => "circular",
}
}
}
impl Default for MoleculeTopology {
fn default() -> Self {
Self::Linear
}
}
impl fmt::Display for MoleculeTopology {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(self.as_ref())
}
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum ParseError {
Empty,
Invalid,
}
impl error::Error for ParseError {}
impl fmt::Display for ParseError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Empty => f.write_str("empty input"),
Self::Invalid => f.write_str("invalid input"),
}
}
}
impl FromStr for MoleculeTopology {
type Err = ParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"" => Err(ParseError::Empty),
"linear" => Ok(Self::Linear),
"circular" => Ok(Self::Circular),
_ => Err(ParseError::Invalid),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_default() {
assert_eq!(MoleculeTopology::default(), MoleculeTopology::Linear);
}
#[test]
fn test_fmt() {
assert_eq!(MoleculeTopology::Linear.to_string(), "linear");
assert_eq!(MoleculeTopology::Circular.to_string(), "circular");
}
#[test]
fn test_from_str() {
assert_eq!("linear".parse(), Ok(MoleculeTopology::Linear));
assert_eq!("circular".parse(), Ok(MoleculeTopology::Circular));
assert_eq!("".parse::<MoleculeTopology>(), Err(ParseError::Empty));
assert_eq!(
"noodles".parse::<MoleculeTopology>(),
Err(ParseError::Invalid)
);
assert_eq!(
"Linear".parse::<MoleculeTopology>(),
Err(ParseError::Invalid)
);
}
}