pub trait PomParser {
    // Required method
    fn parse(&self, input: String) -> Result<Project, ResolverError>;
}

Required Methods§

Implementors§