Trait CommandCli

Source
pub trait CommandCli: StructOpt + Send {
    // Required methods
    fn workdir(&self) -> Option<PathBuf>;
    fn command(&self) -> &Command;
}

Required Methods§

Source

fn workdir(&self) -> Option<PathBuf>

Source

fn command(&self) -> &Command

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.

Implementors§