Let LazyFile derive Debug
This commit is contained in:
parent
88f6086c97
commit
2c398d941b
1 changed files with 1 additions and 0 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue