Struct nanoserde::TomlParser [−][src]
Expand description
A parser for TOML string values.
let toml = "[Section]\nvalue=1"; let parsed = TomlParser::parse(toml).unwrap(); assert_eq!(parsed["Section.value"], Toml::Num(1.));
Fields
cur: charline: usizecol: usizeImplementations
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for TomlParserimpl Send for TomlParserimpl Sync for TomlParserimpl Unpin for TomlParserimpl UnwindSafe for TomlParser