Trait nu_command::config::Conf[][src]

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

Required methods

Implementations on Foreign Types

Implementors