Struct grep_cli::CommandError
source · pub struct CommandError { /* private fields */ }
Expand description
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§
source§impl Debug for CommandError
impl Debug for CommandError
source§impl Display for CommandError
impl Display for CommandError
source§impl Error for CommandError
impl Error for CommandError
source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
source§impl From<CommandError> for Error
impl From<CommandError> for Error
source§fn from(cmderr: CommandError) -> Error
fn from(cmderr: CommandError) -> Error
Converts to this type from the input type.
source§impl From<Error> for CommandError
impl From<Error> for CommandError
source§fn from(ioerr: Error) -> CommandError
fn from(ioerr: Error) -> CommandError
Converts to this type from the input type.