Enum subprocess::PopenError [] [src]

pub enum PopenError {
    Utf8Error(FromUtf8Error),
    IoError(Error),
    LogicError(&'static str),
}

Error in Popen calls.

Variants

Error when attempting to convert bytes to string.

The underlying error is io::Error.

A logical error was made, e.g. invalid arguments detected at run-time.

Trait Implementations

impl Debug for PopenError
[src]

[src]

Formats the value using the given formatter.

impl From<FromUtf8Error> for PopenError
[src]

[src]

Performs the conversion.

impl From<Error> for PopenError
[src]

[src]

Performs the conversion.

impl Error for PopenError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl Display for PopenError
[src]

[src]

Formats the value using the given formatter. Read more