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