Struct rune::IrError[][src]

pub struct IrError { /* fields omitted */ }

An error raised during compiling.

Implementations

impl IrError[src]

pub fn new<S, K>(spanned: S, kind: K) -> Self where
    S: Spanned,
    IrErrorKind: 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) -> &IrErrorKind[src]

Get the kind of the error.

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

Convert into the kind of the error.

impl IrError[src]

pub fn expected<S, E>(spanned: S, actual: &IrValue) -> Self where
    S: Spanned,
    E: TypeOf
[src]

An error raised when we expect a certain constant value but get another.

pub fn access<S>(spanned: S) -> impl FnOnce(AccessError) -> Self where
    S: Spanned
[src]

Construct a callback to build an access error with the given spanned.

Trait Implementations

impl Debug for IrError[src]

impl Display for IrError[src]

impl Error for IrError[src]

impl From<IrError> for CompileError[src]

impl From<IrError> for QueryError[src]

impl From<QueryError> for IrError[src]

impl From<ResolveError> for IrError[src]

impl From<ScopeError> for IrError[src]

impl Spanned for IrError[src]

Auto Trait Implementations

impl RefUnwindSafe for IrError

impl Send for IrError

impl Sync for IrError

impl Unpin for IrError

impl UnwindSafe for IrError

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.