Parser

Trait Parser 

Source
pub trait Parser<S> {
    // Required method
    fn parse(&self, source: &S) -> Validation<Project>;
}

Required Methods§

Source

fn parse(&self, source: &S) -> Validation<Project>

Implementors§