Enum conch_runtime::eval::EvalRedirectOrCmdWordError[][src]

pub enum EvalRedirectOrCmdWordError<R, V> {
    Redirect(R),
    CmdWord(V),
}

An error which may arise when evaluating a redirect or a shell word.

Variants

A redirect error occured.

A variable assignment evaluation error occured.

Trait Implementations

impl<R: Debug, V: Debug> Debug for EvalRedirectOrCmdWordError<R, V>
[src]

Formats the value using the given formatter. Read more

impl<R: Clone, V: Clone> Clone for EvalRedirectOrCmdWordError<R, V>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<R: PartialEq, V: PartialEq> PartialEq for EvalRedirectOrCmdWordError<R, V>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<R: Eq, V: Eq> Eq for EvalRedirectOrCmdWordError<R, V>
[src]

impl<R, V> Error for EvalRedirectOrCmdWordError<R, V> where
    R: Error,
    V: Error
[src]

This method is soft-deprecated. Read more

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

impl<R, V> Display for EvalRedirectOrCmdWordError<R, V> where
    R: Display,
    V: Display
[src]

Formats the value using the given formatter. Read more

impl<R, V> IsFatalError for EvalRedirectOrCmdWordError<R, V> where
    R: IsFatalError,
    V: IsFatalError
[src]

Checks whether the error should be considered a "fatal" error.

Auto Trait Implementations

impl<R, V> Send for EvalRedirectOrCmdWordError<R, V> where
    R: Send,
    V: Send

impl<R, V> Sync for EvalRedirectOrCmdWordError<R, V> where
    R: Sync,
    V: Sync