Expand description
Macro crate for strp crate.
Macrosยง
- parse
- Interally uses
try_parseand unwraps the result to parse a single value from a source string. - scan
- Interally uses
try_scanand unwraps the result to parse multiple values from a source string. - try_
parse - Attempts to parse a single variable from an iterator on a type that implements
the
TryParsetrait. - try_
scan - Very similar to
try_parse, except it allows for 2 or more matched values.