1 2 3 4 5 6
use crate::{geo::geodb::GeoDB, NaliText}; pub trait Parser<G: GeoDB> { fn parse(&self, input: &str, db: &G) -> NaliText; fn name(&self) -> &str; }