Struct checked_command::CheckedChild [] [src]

pub struct CheckedChild { /* fields omitted */ }

A wrapper around std::process::Child which hides the original wait/wait_with_output methods and replaces it with the versions from checked_command::ChildExt

Methods

impl CheckedChild
[src]

returns a mutable reference to the wrapped child

converts the checked child into a std::process::Child note that a Into<Child> implementation is not provided.

return a optional &mut to the childs Stding

return a optional &mut to the childs Stding

return a optional &mut to the childs Stding

calls std::process::Child::kill

calls std::process::Child::id

calls ChildExt::checked_wait on the wrapped Child

calls ChildExt::checked_wait_with_output on the wrapped Child

Trait Implementations

impl Debug for CheckedChild
[src]

Formats the value using the given formatter.

impl From<Child> for CheckedChild
[src]

Performs the conversion.