vnetod/src/domain.rs

30 lines
630 B
Rust
Raw Normal View History

pub mod switch;
2022-07-31 00:02:43 +03:00
#[derive(Debug, Clone, PartialEq, Eq)]
struct Section {
namespace: Option<String>,
name: String,
}
2022-07-31 00:02:43 +03:00
impl Section {
fn new(name: &str) -> Self {
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-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))
}
}