Expand description
A helper crate for prse, the small string parsing library.
Macros§
- parse
- The
parsemacro allows you to parse a string into any type that implementsParse. (Which can be derived with theParsemacro) - try_
parse - Returns a
Resultinstead of unwrapping likeparse!. TheResulthasParseErroras the error type.