//! Data structures representing arguments that we can pass to
//! `docker-compose` and other command-line tools.
usestd::ffi::OsString;pubuseself::act_on::ActOn;pubuseself::act_on_sources::ActOnSources;pubuseself::cmd::*;pubmodact_on;pubmodact_on_sources;modcmd;pubmodopts;/// Trait for types which can be converted to command-line arguments.
pubtraitToArgs{/// Convert to arguments suitable for `std::process::Command` or our
/// `CommandBuilder`.
fnto_args(&self)->Vec<OsString>;}