Trait UpParser

Source
pub trait UpParser<'input, T> {
    // Required method
    fn parse(&self, input: &'input str) -> UpResult<'input, T>;
}

Required Methods§

Source

fn parse(&self, input: &'input str) -> UpResult<'input, T>

Implementors§

Source§

impl<'input, T, F> UpParser<'input, T> for F
where F: Fn(&'input str) -> UpResult<'input, T>,