pub enum EquationErrorType {
MissingItems,
UnexpectedToken,
UnsetVariable,
}Expand description
The EquationErrorType enum is used to represent the type of error that can occur in the equation solver.
Variants§
MissingItems
Items were missing in the equation.
UnexpectedToken
An unexpected token was found in the equation.
UnsetVariable
An unset variable was found.
Trait Implementations§
Source§impl Clone for EquationErrorType
impl Clone for EquationErrorType
Source§fn clone(&self) -> EquationErrorType
fn clone(&self) -> EquationErrorType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EquationErrorType
impl Debug for EquationErrorType
Source§impl PartialEq for EquationErrorType
impl PartialEq for EquationErrorType
impl StructuralPartialEq for EquationErrorType
Auto Trait Implementations§
impl Freeze for EquationErrorType
impl RefUnwindSafe for EquationErrorType
impl Send for EquationErrorType
impl Sync for EquationErrorType
impl Unpin for EquationErrorType
impl UnwindSafe for EquationErrorType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more