(&self, other: &Box<dyn Value>)
| 64 | // bound because otherwise it's tricky to make `Value` object safe. |
| 65 | impl PartialEq for Box<dyn Value> { |
| 66 | fn eq(&self, other: &Box<dyn Value>) -> bool { |
| 67 | self.format().eq(&other.format()) |
| 68 | } |
| 69 | } |
| 70 | impl Eq for Box<dyn Value> {} |
| 71 |