Struct grep_cli::CommandError[][src]

pub struct CommandError { /* fields omitted */ }

An error that can occur while running a command and reading its output.

This error can be seamlessly converted to an io::Error via a From implementation.

Trait Implementations

impl Debug for CommandError
[src]

Formats the value using the given formatter. Read more

impl Error for CommandError
[src]

This method is soft-deprecated. Read more

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

impl Display for CommandError
[src]

Formats the value using the given formatter. Read more

impl From<Error> for CommandError
[src]

Performs the conversion.

impl From<CommandError> for Error
[src]

Performs the conversion.

Auto Trait Implementations