pub trait ParseTo<R> { fn parse_to(&self) -> Option<R>; }
Used to integrate str’s parse() method
str
parse()
Succeeds if parse() succeeded. The byte slice implementation will first convert it to a &str, then apply the parse() function
&str