pub trait Conf: Debug + Send {
    fn is_modified(&self) -> Result<bool, Box<dyn Error>>;
fn var(&self, key: &str) -> Option<Value>;
fn env(&self) -> Option<Value>;
fn path(&self) -> Result<Option<Vec<PathBuf>>, ShellError>;
fn clone_box(&self) -> Box<dyn Conf>;
fn reload(&mut self); }

Required methods

Implementations on Foreign Types

Implementors