pub trait FromTextual<'a, E: 'a + ParseError<&'a str> + ContextError<&'a str>> {
    fn from_textual(input: &'a str) -> IResult<&'a str, Operator, E>;
}

Required Methods

Implementors