1 2 3 4 5 6 7
pub trait Config: Sized + Default { fn name() -> &'static str; fn env_prefix() -> Option<&'static str> { None } }