Structs

Simplifies reading and parsing of known input in a speedy fashion.
Allows reading of string slices (&str). The standard library does not provide a FromStr implementation for &str. The Str type newtypes &str and implements FParse and Deref<Target = &str>.

Traits

Helper trait for parsing. Mainly used to avoid repeating type constraints.