pub trait Configurable {
// Required method
fn config_prefix() -> &'static str;
}
Required Methods§
sourcefn config_prefix() -> &'static str
fn config_prefix() -> &'static str
Prefix used to read toml configuration. If you need to load external configuration, you need to rewrite this method
Object Safety§
This trait is not object safe.