Struct tendermint_testgen::command::Command

source ·
pub struct Command { /* private fields */ }
Expand description

A thin wrapper around process::Command to facilitate running external commands.

Implementations§

source§

impl Command

source

pub fn exists_program(program: &str) -> bool

Check whether the given program can be executed

source

pub fn new() -> Command

Construct a new Command

source

pub fn program(&mut self, program: &str) -> &mut Self

Set the program to run

source

pub fn arg(&mut self, arg: &str) -> &mut Self

Add a new program argument

source

pub fn arg_from_parts(&mut self, parts: Vec<&str>) -> &mut Self

Add a new program argument, concatenated from several parts

source

pub fn current_dir(&mut self, dir: &str) -> &mut Self

Set the working directory for the child process

source

pub fn spawn(&mut self) -> Result<CommandRun>

Execute the command as a child process, and extract its status, stdout, stderr.

Trait Implementations§

source§

impl Default for Command

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.