[][src]Enum shellfn_core::Error

pub enum Error<PE: StdError> {
    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: StdError> Display for Error<PE>[src]

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

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

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

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

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.