pub trait TextModeParserFactory {
type Parser: TextModeParser;
// Required method
fn create(
&self,
features_type: FeaturesType,
label_type: LabelType,
hash_seed: u32,
num_bits: u8,
pool: Arc<Pool<SparseFeatures>>,
) -> Self::Parser;
}