[][src]Enum kg_tree::opath::ExprErrorDetail

pub enum ExprErrorDetail {
    MultipleVarValues {
        var_name: String,
    },
    VariableNotFound {
        var_name: String,
    },
    InterpolationDepthReached {
        depth: usize,
    },
}

Variants

MultipleVarValues

Fields of MultipleVarValues

var_name: String
VariableNotFound

Fields of VariableNotFound

var_name: String
InterpolationDepthReached

Fields of InterpolationDepthReached

depth: usize

Trait Implementations

impl Display for ExprErrorDetail[src]

impl Debug for ExprErrorDetail[src]

impl Detail for ExprErrorDetail[src]

fn type_id(&self) -> TypeId[src]

fn as_fmt_debug(&self) -> &dyn Debug[src]

fn as_fmt_display(&self) -> &dyn Display[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Detail for T where
    T: Detail
[src]

fn severity(&self) -> Severity[src]

fn code(&self) -> u32[src]

fn type_id(&self) -> TypeId[src]