ExpandError

Type Alias ExpandError 

Source
pub type ExpandError = LookupError<VarError>;
Expand description

Renamed shellexpand::LookupError for better ergonomics.

Aliased Type§

pub struct ExpandError {
    pub var_name: String,
    pub cause: VarError,
}

Fields§

§var_name: String

The name of the problematic variable inside the input string.

§cause: VarError

The original error returned by the context function.