support_kit/config/
config_file.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
34
35
use std::fmt::Display;

use serde::{Deserialize, Serialize};

use crate::ServiceName;

#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
pub struct ConfigFile(String);

impl Display for ConfigFile {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.0)
    }
}

impl Default for ConfigFile {
    fn default() -> Self {
        ServiceName::default().into()
    }
}

impl<T> From<T> for ConfigFile
where
    T: Into<ServiceName>,
{
    fn from(name: T) -> Self {
        Self(name.into().to_string())
    }
}

impl From<ConfigFile> for String {
    fn from(file: ConfigFile) -> Self {
        file.0
    }
}