Trait nu_cli::config::Conf [−][src]
pub trait Conf: Debug + Send { pub fn is_modified(&self) -> Result<bool, Box<dyn Error + 'static, Global>>; pub fn var(&self, key: &str) -> Option<Value>; pub fn env(&self) -> Option<Value>; pub fn path(&self) -> Result<Option<Vec<PathBuf, Global>>, ShellError>; pub fn clone_box(&self) -> Box<dyn Conf + 'static, Global>; pub fn reload(&mut self); }