2022-07-30 17:31:05 +03:00
|
|
|
pub mod switch;
|
|
|
|
|
2022-07-31 00:02:43 +03:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
2022-07-30 17:31:05 +03:00
|
|
|
struct Section {
|
|
|
|
namespace: Option<String>,
|
|
|
|
name: String,
|
|
|
|
}
|
|
|
|
|
2022-07-31 00:02:43 +03:00
|
|
|
impl Section {
|
|
|
|
fn new(name: &str) -> Self {
|
2022-07-30 17:31:05 +03:00
|
|
|
Self {
|
2022-07-31 00:02:43 +03:00
|
|
|
name: name.to_string(),
|
|
|
|
namespace: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn with_namespace(namespace: &str, name: &str) -> Self {
|
|
|
|
Self {
|
|
|
|
name: name.to_string(),
|
|
|
|
namespace: Some(namespace.to_string()),
|
2022-07-30 17:31:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-31 00:02:43 +03:00
|
|
|
fn parse(s: &str) -> Self {
|
|
|
|
let s = s.trim();
|
|
|
|
s.split_once(':')
|
|
|
|
.map_or_else(|| Self::new(s), |(ns, name)| Self::with_namespace(ns, name))
|
2022-07-30 17:31:05 +03:00
|
|
|
}
|
|
|
|
}
|