summaryrefslogtreecommitdiffstats
path: root/libimagnotes
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-04-18 15:58:35 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-04-20 21:46:02 +0200
commit90b4e3cc62b89aef5257d409d817880f3e4febd9 (patch)
tree5a7ea7bd046e13b0bd66d85bd4732f10ffe54366 /libimagnotes
parent872114d86f18d372df9c0addf3a1ae733c71cabe (diff)
Add derive(Debug) for Note
Diffstat (limited to 'libimagnotes')
-rw-r--r--libimagnotes/src/note.rs1
1 files changed, 1 insertions, 0 deletions
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>,
}