pub trait Parse: Sized {
    fn parse(string: &str) -> Result<Self, Error>;
}
Expand description

A specialized FromStr trait that returns [AtError] errors

Required Methods

Parse Self from string.

Implementations on Foreign Types

Implementors