From 6b79d0d51d132cef2d831a5b854f0eb3d5692390 Mon Sep 17 00:00:00 2001 From: Sanpi Date: Wed, 13 Jan 2021 10:17:38 +0100 Subject: [PATCH] Impl Debug for Temp --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 6677229..c9fca50 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -30,7 +30,7 @@ use std::os::unix::fs::{DirBuilderExt, OpenOptionsExt}; use std::path::{Path, PathBuf}; use uuid::Uuid; -#[derive(Clone)] +#[derive(Clone, Debug)] pub struct Temp { path: PathBuf, }