Add FileLockEntry-getter in Mail struct

This commit is contained in:
Matthias Beyer 2018-11-02 11:11:23 +01:00
parent e919435504
commit e043304767

View file

@ -194,4 +194,8 @@ impl<'a> Mail<'a> {
self.get_field("In-Reply-To")
}
pub fn fle(&self) -> &FileLockEntry<'a> {
&self.0
}
}