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

A specialized FromStr trait that returns AtError errors

Required Methods

Parse Self from string.

Implementations on Foreign Types

Implementors