Fix: Add EntryHeader::toml_mut()
This commit is contained in:
parent
ec01bafcf1
commit
213cb32a88
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue