pub fn parse<F: FromStr>(data: &FsStr) -> Result<F, Errno>where <F as FromStr>::Err: Debug,
Parses data slice into another type.
data
This relies on str::parse so expects data to be utf8.