Struct fmt_macros::ParserExperimental
[-]
[+]
[src]
pub struct Parser<'a> { pub errors: Vec<String>, // some fields omitted }
The parser structure for interpreting the input format string. This is
modelled as an iterator over Piece
structures to form a stream of tokens
being output.
This is a recursive-descent parser for the sake of simplicity, and if necessary there's probably lots of room for improvement performance-wise.
Fields
errors | Error messages accumulated during parsing |