pub trait CommandExt {
// Required methods
fn export(
&mut self,
settings: &Settings<'_>,
dotenv: &BTreeMap<String, String>,
scope: &Scope<'_, '_>,
unexports: &HashSet<String>,
);
fn export_scope(
&mut self,
settings: &Settings<'_>,
scope: &Scope<'_, '_>,
unexports: &HashSet<String>,
);
}