Enum query_algebrizer_traits::errors::AlgebrizerError
[−]
[src]
pub enum AlgebrizerError { DuplicateVariableError(PlainSymbol, &'static str), UnsupportedArgument, InputTypeDisagreement(PlainSymbol, ValueType, ValueType), InvalidNumberOfArguments(PlainSymbol, usize, usize), InvalidArgument(PlainSymbol, &'static str, usize), InvalidArgumentType(PlainSymbol, ValueTypeSet, usize), InvalidGroundConstant, InvalidLimit(String, ValueType), GroundBindingsMismatch, UnrecognizedIdent(String), UnknownFunction(PlainSymbol), UnknownLimitVar(PlainSymbol), UnboundVariable(PlainSymbol), NonMatchingVariablesInOrClause, NonMatchingVariablesInNotClause, InvalidBinding(PlainSymbol, BindingError), EdnParseError(ParseError), }
Variants
DuplicateVariableError(PlainSymbol, &'static str)
UnsupportedArgument
InputTypeDisagreement(PlainSymbol, ValueType, ValueType)
InvalidNumberOfArguments(PlainSymbol, usize, usize)
InvalidArgument(PlainSymbol, &'static str, usize)
InvalidArgumentType(PlainSymbol, ValueTypeSet, usize)
InvalidGroundConstant
InvalidLimit(String, ValueType)
GroundBindingsMismatch
UnrecognizedIdent(String)
UnknownFunction(PlainSymbol)
UnknownLimitVar(PlainSymbol)
UnboundVariable(PlainSymbol)
NonMatchingVariablesInOrClause
NonMatchingVariablesInNotClause
InvalidBinding(PlainSymbol, BindingError)
EdnParseError(ParseError)
Trait Implementations
impl Clone for AlgebrizerError
[src]
fn clone(&self) -> AlgebrizerError
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for AlgebrizerError
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Eq for AlgebrizerError
[src]
impl PartialEq for AlgebrizerError
[src]
fn eq(&self, __arg_0: &AlgebrizerError) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &AlgebrizerError) -> bool
[src]
This method tests for !=
.
impl From<ParseError> for AlgebrizerError
[src]
fn from(error: ParseError) -> AlgebrizerError
[src]
Performs the conversion.