Let LazyFile derive Debug

This commit is contained in:
Matthias Beyer 2016-01-28 21:00:13 +01:00
parent 88f6086c97
commit 2c398d941b

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. * A lazy file is either absent, but a path to it is available, or it is present.
*/ */
#[derive(Debug)]
pub enum LazyFile { pub enum LazyFile {
Absent(PathBuf), Absent(PathBuf),
File(File) File(File)