Trait ruly::Parse[][src]

pub trait Parse: Sized {
    fn new() -> Self;
fn set_input(&mut self, s: &str);
fn set_skip_reg(&mut self, reg: Regex);
fn run<T: Product<Self>>(&mut self) -> Result<T, (String, usize)>; }

Required methods

Implementors