pub trait Build {
// Required method
fn build(self) -> Command;
}Expand description
Trait for building a command without executing it.
All git command builders implement this trait, allowing you to
access the underlying cmd_proc::Command for custom execution.
§Example
ⓘ
use git_proc::Build;
use cmd_proc::Stdio;
git_proc::fetch::new()
.all()
.build()
.spawn()
.stderr(Stdio::Null)
.run()?;