pub trait EnvApply<'a> {
// Required methods
fn apply(&'a self) -> String;
fn apply_with_prefix(&'a self, prefix: &str) -> String;
}Required Methods§
Sourcefn apply_with_prefix(&'a self, prefix: &str) -> String
fn apply_with_prefix(&'a self, prefix: &str) -> String
Apply environment variables by prepending a prefix to the variable names.