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
use crate::error::{Error, ErrorKind};
use serde::{de, ser, Deserialize, Serialize};
use std::{fmt, str::FromStr};
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, PartialOrd, Ord)]
pub enum Collection {
Crates,
Rust,
}
impl Collection {
pub fn all() -> &'static [Self] {
&[Collection::Crates, Collection::Rust]
}
pub fn as_str(&self) -> &str {
match self {
Collection::Crates => "crates",
Collection::Rust => "rust",
}
}
}
impl fmt::Display for Collection {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl FromStr for Collection {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Error> {
Ok(match s {
"crates" => Collection::Crates,
"rust" => Collection::Rust,
other => fail!(ErrorKind::Parse, "invalid package type: {}", other),
})
}
}
impl<'de> Deserialize<'de> for Collection {
fn deserialize<D: de::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
use de::Error;
let string = String::deserialize(deserializer)?;
string.parse().map_err(D::Error::custom)
}
}
impl Serialize for Collection {
fn serialize<S: ser::Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
self.to_string().serialize(serializer)
}
}
#[cfg(test)]
mod tests {
use super::Collection;
#[test]
fn parse_crate() {
let crate_kind = "crates".parse::<Collection>().unwrap();
assert_eq!(Collection::Crates, crate_kind);
assert_eq!("crates", crate_kind.as_str());
}
#[test]
fn parse_rust() {
let rust_kind = "rust".parse::<Collection>().unwrap();
assert_eq!(Collection::Rust, rust_kind);
assert_eq!("rust", rust_kind.as_str());
}
#[test]
fn parse_other() {
assert!("foobar".parse::<Collection>().is_err());
}
}