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>,
);
}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>, )
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".