[][src]Enum shellfn::Error

pub enum Error<PE> where
    PE: Error
{ NonUtf8Stdout(FromUtf8Error), ParsingError(PE), ProcessNotSpawned(Error), StdoutUnreadable(Error), WaitFailed(Error), ProcessFailed(Output), }

Variants

NonUtf8Stdout(FromUtf8Error)ParsingError(PE)ProcessNotSpawned(Error)StdoutUnreadable(Error)WaitFailed(Error)ProcessFailed(Output)

Trait Implementations

impl<PE> Debug for Error<PE> where
    PE: Error + Debug
[src]

impl<PE> Error for Error<PE> where
    PE: Error
[src]

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

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

impl<PE> Display for Error<PE> where
    PE: Error
[src]

Auto Trait Implementations

impl<PE> Send for Error<PE> where
    PE: Send

impl<PE> Sync for Error<PE> where
    PE: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.