Let LazyFile derive Debug

This commit is contained in:
Matthias Beyer 2016-01-28 21:00:13 +01:00
parent 88f6086c97
commit 2c398d941b
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ use std::fs::{File, OpenOptions};
*
* A lazy file is either absent, but a path to it is available, or it is present.
*/
#[derive(Debug)]
pub enum LazyFile {
Absent(PathBuf),
File(File)