pub trait Context<'a, Cfg>: Send where
Cfg: Serialize + Deserialize<'a> + Default, {
fn config_file_name(&self) -> String { ... }
fn config_file_path(&self) -> Result<PathBuf> { ... }
fn root(&self) -> Result<PathBuf> { ... }
fn config(&self) -> Result<Cfg> { ... }
fn global_config(&self) -> Result<GlobalConfig> { ... }
}Provided Methods
source
fn config_file_name(&self) -> String
source
fn config_file_path(&self) -> Result<PathBuf>
source