Enum fluvio_command::CommandErrorKind[][src]

pub enum CommandErrorKind {
    Terminated,
    ExitError(i32Output),
    IoError(Error),
}

Describes the particular kinds of errors that may occur while running a command

Variants

Terminated

The child process was terminated, so did not exit successfully

ExitError(i32Output)

The child process completed with a non-zero exit code

IoError(Error)

There was an error invoking the command

Trait Implementations

impl Debug for CommandErrorKind[src]

impl Display for CommandErrorKind[src]

impl Error for CommandErrorKind[src]

impl From<Error> for CommandErrorKind[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.