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
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
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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.
Auto Trait Implementations§
impl !RefUnwindSafe for CommandError
impl Send for CommandError
impl Sync for CommandError
impl Unpin for CommandError
impl !UnwindSafe for CommandError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more