Trait constellation::sandboxing::CommandMethods
source · trait CommandMethods {
// Required methods
fn arg<T>(&mut self, arg: T)
where T: AsRef<OsStr>;
fn env<T, U>(&mut self, key: T, val: U)
where T: AsRef<OsStr>,
U: AsRef<OsStr>;
}
Expand description
A trait to unify commands launched as multiprocess with or without a sandbox.
Required Methods§
Object Safety§
This trait is not object safe.