Expand description
Parsing using const fn methods.
You can use the Parser type to parse from string,
more information in its documentation.
If you’re looking for functions to parse some type from an entire string
(instead of only part of it),
then you want to look in the module for that type, eg: primitive::parse_bool.
If you do want to parse a type fron only part of a string, then you can use
Parser’s parse_* methods, or the parse_with macro.
Structs§
- Error returned by all parsing methods that return Result.
- For parsing and traversing over strings in const contexts.
- Parses a standard library type, determined by the
StdTypetype parameter.
Enums§
- What kind of parsing error this is.
- The direction that a parser was parsing from when an error happened.
Traits§
- Gets a type that parses
Selfwith aparse_withmethod.
Type Aliases§
- Result alias for functions that parse values.
- Result alias for functions that mutate the parser fallibly.