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]

[src]

Formats the value using the given formatter.

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

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

[src]

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]

[src]

A short description of the error. Read more

[src]

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]

[src]

Formats the value using the given formatter. Read more

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

[src]

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