pub trait QueryEnvironment {
    // Required methods
    fn get_var(&self, var: &'static str) -> Result<String, VarError>;
    fn empty(&self) -> Result<bool>;
}

Required Methods§

source

fn get_var(&self, var: &'static str) -> Result<String, VarError>

source

fn empty(&self) -> Result<bool>

Implementors§