Added Clone to errors

This commit is contained in:
Claus Matzinger 2022-12-01 22:47:01 +01:00
parent 040a192147
commit f5520077e0
No known key found for this signature in database
GPG Key ID: 7B183BCF2DBEC988

View File

@ -14,7 +14,7 @@ use crate::{operator::Operator, value::Value};
mod display;
/// Errors used in this crate.
#[derive(Debug, PartialEq)]
#[derive(Debug, Clone, PartialEq)]
#[non_exhaustive]
pub enum EvalexprError {
/// An operator was called with a wrong amount of arguments.