Crate prse_derive

Crate prse_derive 

Source
Expand description

A helper crate for prse, the small string parsing library.

Macros§

parse
The parse macro allows you to parse a string into any type that implements Parse. (Which can be derived with the Parse macro)
try_parse
Returns a Result instead of unwrapping like parse!. The Result has ParseError as the error type.

Derive Macros§

Parse
Automatically implements the Parse trait using one of two methods.