Add derive(Debug) for Note

This commit is contained in:
Matthias Beyer 2016-04-18 15:58:35 +02:00
parent 872114d86f
commit 90b4e3cc62

View file

@ -19,6 +19,7 @@ use result::Result;
use error::NoteError as NE; use error::NoteError as NE;
use error::NoteErrorKind as NEK; use error::NoteErrorKind as NEK;
#[derive(Debug)]
pub struct Note<'a> { pub struct Note<'a> {
entry: FileLockEntry<'a>, entry: FileLockEntry<'a>,
} }