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

Required Methods

Implementations on Foreign Types

Implementors