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