pub trait CommandBuilder {
// Required methods
fn with_arg<S: AsRef<OsStr>>(self, arg: S) -> Self;
fn with_env<K, V>(self, key: K, val: V) -> Self
where K: AsRef<OsStr>,
V: AsRef<OsStr>;
fn with_current_dir<P: AsRef<Path>>(self, path: P) -> Self;
fn pipe(self, next: Command) -> Result<Self>
where Self: Sized;
fn pipe_stderr(self, next: Command) -> Result<Self>
where Self: Sized;
// Provided methods
fn with_args<I, S>(self, args: I) -> Self
where Self: Sized,
I: IntoIterator<Item = S>,
S: AsRef<OsStr> { ... }
fn maybe_with_arg<S>(self, apply: bool, arg: S) -> Self
where Self: Sized,
S: AsRef<OsStr> { ... }
fn maybe_with_args<I, S>(self, apply: bool, args: I) -> Self
where Self: Sized,
I: IntoIterator<Item = S>,
S: AsRef<OsStr> { ... }
fn with_envs<I, K, V>(self, vars: I) -> Self
where Self: Sized,
I: IntoIterator<Item = (K, V)>,
K: AsRef<OsStr>,
V: AsRef<OsStr> { ... }
}
Expand description
Required Methods§
Sourcefn with_arg<S: AsRef<OsStr>>(self, arg: S) -> Self
fn with_arg<S: AsRef<OsStr>>(self, arg: S) -> Self
Akin to Command::arg
.
Sourcefn with_env<K, V>(self, key: K, val: V) -> Self
fn with_env<K, V>(self, key: K, val: V) -> Self
Akin to Command::env
.
Sourcefn with_current_dir<P: AsRef<Path>>(self, path: P) -> Self
fn with_current_dir<P: AsRef<Path>>(self, path: P) -> Self
Akin to Command::current_dir
.
Sourcefn pipe(self, next: Command) -> Result<Self>where
Self: Sized,
fn pipe(self, next: Command) -> Result<Self>where
Self: Sized,
Pipe stdout
of this into next
command.
Sourcefn pipe_stderr(self, next: Command) -> Result<Self>where
Self: Sized,
fn pipe_stderr(self, next: Command) -> Result<Self>where
Self: Sized,
Pipe stderr
of this into next
command.
Provided Methods§
Sourcefn with_args<I, S>(self, args: I) -> Self
fn with_args<I, S>(self, args: I) -> Self
Akin to Command::args
.
Sourcefn maybe_with_arg<S>(self, apply: bool, arg: S) -> Self
fn maybe_with_arg<S>(self, apply: bool, arg: S) -> Self
Add the argument if apply
is true
.
Sourcefn maybe_with_args<I, S>(self, apply: bool, args: I) -> Self
fn maybe_with_args<I, S>(self, apply: bool, args: I) -> Self
Add the arguments if apply
is true
.
Sourcefn with_envs<I, K, V>(self, vars: I) -> Self
fn with_envs<I, K, V>(self, vars: I) -> Self
Akin to Command::envs
.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.