Struct rune::QueryError[][src]

pub struct QueryError { /* fields omitted */ }

An error raised during querying.

Implementations

impl QueryError[src]

pub fn new<S, K>(spanned: S, kind: K) -> Self where
    S: Spanned,
    QueryErrorKind: From<K>, 
[src]

Construct a new scope error.

pub fn msg<S>(spanned: S, message: &'static str) -> Self where
    S: Spanned
[src]

Construct an custom error.

This should be used for programming invariants of the encoder which are broken for some reason.

pub fn kind(&self) -> &QueryErrorKind[src]

Get the kind of the error.

pub fn into_kind(self) -> QueryErrorKind[src]

Convert into the kind of the error.

Trait Implementations

impl Debug for QueryError[src]

impl Display for QueryError[src]

impl Error for QueryError[src]

impl From<IrError> for QueryError[src]

impl From<ParseError> for QueryError[src]

impl From<QueryError> for CompileError[src]

impl From<QueryError> for ErrorKind[src]

impl From<QueryError> for IrError[src]

impl From<ResolveError> for QueryError[src]

impl Spanned for QueryError[src]

Auto Trait Implementations

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> 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.