-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathdeprecation.rs
33 lines (30 loc) · 932 Bytes
/
deprecation.rs
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
/// Whether an item is deprecated, with context.
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
pub enum DeprecationStatus {
/// Not deprecated
Current,
/// Deprecated
Deprecated(Option<String>),
}
/// The available deprecation strategies.
#[derive(Debug, PartialEq, Eq, Clone, Default)]
pub enum DeprecationStrategy {
/// Allow use of deprecated items in queries, and say nothing.
Allow,
/// Fail compilation if a deprecated item is used.
Deny,
/// Allow use of deprecated items in queries, but warn about them (default).
#[default]
Warn,
}
impl std::str::FromStr for DeprecationStrategy {
type Err = ();
fn from_str(s: &str) -> Result<Self, ()> {
match s.trim() {
"allow" => Ok(DeprecationStrategy::Allow),
"deny" => Ok(DeprecationStrategy::Deny),
"warn" => Ok(DeprecationStrategy::Warn),
_ => Err(()),
}
}
}