(&self, other: &Box<dyn Value>)
| 66 | } |
| 67 | |
| 68 | fn eq_op(&self, other: &Box<dyn Value>) -> Result<Box<dyn Value>, String> { |
| 69 | if other.as_any().downcast_ref::<RowValue>().is_none() { |
| 70 | return Err("Unexpected type to perform `=` with".to_string()); |
| 71 | } |
| 72 | Ok(Box::new(BoolValue::new(self.equals(other)))) |
| 73 | } |
| 74 | |
| 75 | fn bang_eq_op(&self, other: &Box<dyn Value>) -> Result<Box<dyn Value>, String> { |
| 76 | if other.as_any().downcast_ref::<RowValue>().is_none() { |
no test coverage detected