pub fn parse<'de>(s: &'de str, arena: &'de Arena) -> Result<Table<'de>, Error>
Parses a TOML string into a Table.
Table
The returned table borrows from both the input string and the Arena, so both must outlive the table. The arena is used to store escape sequences; plain strings borrow directly from the input.
Arena