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;
}

Required Associated Types§

Required Methods§

source

fn create( &self, features_type: FeaturesType, label_type: LabelType, hash_seed: u32, num_bits: u8, pool: Arc<Pool<SparseFeatures>> ) -> Self::Parser

Implementors§