pub trait ParseFromStr: Sized {
    fn parse_from_str(s: &str) -> ParseResult<Self>;
}

Required Methods

Implementations on Foreign Types

Implementors