Enum mage::ExpressionError
[−]
pub enum ExpressionError {
UnsupportedOperator(String),
CanNotExec(Operator),
StartWithNonValueOperator,
UnpairedBrackets,
DuplicateValueNode,
DuplicateOperatorNode,
CommaNotWithFunction,
BracketNotWithFunction,
FunctionNotExists(String),
ExpectedBoolean(Value),
ExpectedIdentifier,
ExpectedArray,
ExpectedObject,
ExpectedNumber,
NoFinalNode,
ArgumentsGreater(usize),
ArgumentsLess(usize),
UnsupportedTypes(String, String),
InvalidRange(String),
CanNotAddChild,
Custom(String),
}Expression parsing error
Variants
UnsupportedOperator(String)Unsupported operator yet.
CanNotExec(Operator)This operator does not support execution.
StartWithNonValueOperatorYour expression may start with non-value operator like ( + * )
UnpairedBracketsUnpaired brackets, left brackets count does not equal right brackets count
DuplicateValueNodeDuplicate values node, you may have (2 3) but there is no operators between them
DuplicateOperatorNodeDuplicate operators node, you may have (+ +) but there is no values between them
CommaNotWithFunctionYou have a comma(,) , but there is no function in front of it.
BracketNotWithFunctionYou have empty brackets () , but there is no function in front of it.
FunctionNotExists(String)Function not exists.
ExpectedBoolean(Value)Expected a boolean but the given value isn't.
ExpectedIdentifierExpected ident.
ExpectedArrayExpected array.
ExpectedObjectExpected object.
ExpectedNumberExpect number.
NoFinalNodeFailed to parse, no final expression.
ArgumentsGreater(usize)The number of arguments is greater than the maximum limit.
ArgumentsLess(usize)The number of arguments is less than the minimum limit.
UnsupportedTypes(String, String)This two value types are different or do not support mathematical calculations.
InvalidRange(String)Invalid range expression like 1..2..3
CanNotAddChildCan not add child node.
Custom(String)Custom error.
Trait Implementations
impl Error for Error
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl PartialEq<Error> for Error
impl Display for Error
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.