[][src]Struct shellexpand::LookupError

pub struct LookupError<E> {
    pub var_name: String,
    pub cause: E,
}

Represents a variable lookup error.

This error is returned by env_with_context() function (and, therefore, also by env(), full_with_context() and full()) when the provided context function returns an error. The original error is provided in the cause field, while name contains the name of a variable whose expansion caused the error.

Fields

var_name: String

The name of the problematic variable inside the input string.

cause: E

The original error returned by the context function.

Trait Implementations

impl<E: Clone> Clone for LookupError<E>[src]

impl<E: Debug> Debug for LookupError<E>[src]

impl<E: Display> Display for LookupError<E>[src]

impl<E: Eq> Eq for LookupError<E>[src]

impl<E: Error + 'static> Error for LookupError<E>[src]

impl<E: PartialEq> PartialEq<LookupError<E>> for LookupError<E>[src]

impl<E> StructuralEq for LookupError<E>[src]

impl<E> StructuralPartialEq for LookupError<E>[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for LookupError<E> where
    E: RefUnwindSafe

impl<E> Send for LookupError<E> where
    E: Send

impl<E> Sync for LookupError<E> where
    E: Sync

impl<E> Unpin for LookupError<E> where
    E: Unpin

impl<E> UnwindSafe for LookupError<E> where
    E: UnwindSafe

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.