Fix: Add EntryHeader::toml_mut()

This commit is contained in:
Matthias Beyer 2016-01-24 22:02:41 +01:00
parent ec01bafcf1
commit 213cb32a88

View file

@ -306,6 +306,10 @@ impl EntryHeader {
&self.toml
}
pub fn toml_mut(&mut self) -> &mut Table {
&mut self.toml
}
pub fn parse(s: &str) -> EntryResult<EntryHeader> {
use toml::Parser;