pub trait Parse: Sized { // Required method fn parse(string: &str) -> Result<Self, Error>; }
A specialized FromStr trait that returns Error errors
FromStr
Error
Parse Self from string.
Self
string