From 90b4e3cc62b89aef5257d409d817880f3e4febd9 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 18 Apr 2016 15:58:35 +0200 Subject: [PATCH] Add derive(Debug) for Note --- libimagnotes/src/note.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/libimagnotes/src/note.rs b/libimagnotes/src/note.rs index 0487cb1c..24975d35 100644 --- a/libimagnotes/src/note.rs +++ b/libimagnotes/src/note.rs @@ -19,6 +19,7 @@ use result::Result; use error::NoteError as NE; use error::NoteErrorKind as NEK; +#[derive(Debug)] pub struct Note<'a> { entry: FileLockEntry<'a>, }