(&self, other: &Self)
| 60 | // Implement PartialEq manually |
| 61 | impl PartialEq for CopyTo { |
| 62 | fn eq(&self, other: &Self) -> bool { |
| 63 | self.input == other.input && self.output_url == other.output_url |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | // Implement Eq (no need for additional logic over PartialEq) |