Home
last modified time | relevance | path

Searched defs:Config (Results 1 – 2 of 2) sorted by relevance

/StarryEngine/starry_server/src/
H A Dconfig.rs9 pub struct Config { struct
11 pub normal: String,
12 pub bottom_left_corner: String,
13 pub bottom_right_corner: String,
14 pub bottom_side: String,
15 pub left_side: String,
16 pub right_side: String,
40 impl Default for Config { implementation
62 impl Config { impl
64 fn config_from_string(config: &str) -> Config { in config_from_string()
[all …]
/StarryEngine/starry_server/src/core/
H A Dmod.rs43 pub fn new(config: Arc<Config>, displays: Vec<Display>) { in new()