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
#[cfg_attr(
feature = "serde",
derive(serde::Deserialize, serde::Serialize),
serde(rename_all = "camelCase")
)]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ReadAction {
Clear,
Set,
Modify,
ModifyExternal,
}
impl Default for ReadAction {
fn default() -> Self {
Self::Modify
}
}
impl ReadAction {
pub fn parse_str(s: &str) -> Option<Self> {
use self::ReadAction::*;
match s {
"clear" => Some(Clear),
"set" => Some(Set),
"modify" => Some(Modify),
"modifyExternal" => Some(ModifyExternal),
_ => None,
}
}
pub const fn as_str(self) -> &'static str {
match self {
Self::Clear => "clear",
Self::Set => "set",
Self::Modify => "modify",
Self::ModifyExternal => "modifyExternal",
}
}
}