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