Home
last modified time | relevance | path

Searched refs:Config (Results 1 – 3 of 3) sorted by relevance

/xiu/application/xiu/src/config/
H A Dmod.rs9 pub struct Config { struct
20 impl Config { implementation
173 pub fn load(cfg_path: &String) -> Result<Config, ConfigError> { in load() argument
194 let decoded: Config = toml::from_str(&val[..]).unwrap(); in test_toml_parse()
/xiu/application/xiu/src/
H A Dmain.rs8 xiu::{config, config::Config, service::Service},
156 Config::new( in main()
H A Dservice.rs5 super::config::Config,
22 cfg: Config,
26 pub fn new(cfg: Config) -> Self { in new()