pub trait Data: Sized {
    fn parse(input: &str) -> Result<'_, Self>;

    fn parse3(input: &str) -> Result<'_, [Self; 3]> { ... }
    fn parse_vec(input: &str) -> Result<'_, Vec<Self>> { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors