Enum rhai::EvalAltResult [] [src]

pub enum EvalAltResult {
    ErrorFunctionNotFound,
    ErrorFunctionArgMismatch,
    ErrorFunctionCallNotSupported,
    ErrorIndexMismatch,
    ErrorIfGuardMismatch,
    ErrorVariableNotFound(String),
    ErrorFunctionArityNotSupported,
    ErrorAssignmentToUnknownLHS,
    ErrorMismatchOutputType,
    ErrorCantOpenScriptFile,
    InternalErrorMalformedDotExpression,
    LoopBreak,
    Return(Box<Any>),
}

Variants

Trait Implementations

impl Debug for EvalAltResult
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for EvalAltResult
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Error for EvalAltResult
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl Display for EvalAltResult
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl !Send for EvalAltResult

impl !Sync for EvalAltResult