Load a puzzle from a file
(_fh: File)
| 29 | } |
| 30 | /// Load a puzzle from a file |
| 31 | pub fn from_file(_fh: File) -> Result<Self, PuzzleError> { |
| 32 | println!("HERE"); |
| 33 | error!("This file is missing a piece!"); |
| 34 | Err(PuzzleError::MissingPiece) |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | impl Default for Puzzle { |
nothing calls this directly
no outgoing calls
no test coverage detected