Structs§
- Fast
Input - Simplifies reading and parsing of known input in a speedy fashion.
- Str
- Allows reading of string slices (
&str
). The standard library does not provide aFromStr
implementation for&str
. TheStr
type newtypes&str
and implementsFParse
andDeref<Target = &str>
.