(self: &Puzzle, other: &Puzzle)
| 46 | |
| 47 | impl PartialEq for Puzzle { |
| 48 | fn eq(self: &Puzzle, other: &Puzzle) -> bool { |
| 49 | (self.num_pieces == other.num_pieces) |
| 50 | && (self.name.to_lowercase() == other.name.to_lowercase()) |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | impl From<&Puzzle> for String { |
nothing calls this directly
no outgoing calls
no test coverage detected