Trait RuleConfig

Source
pub trait RuleConfig: Send + Sync {
    // Required method
    fn convert_to_compiled_rule(
        &self,
        rule_index: usize,
        label: Labels,
    ) -> Result<Box<dyn CompiledRule>, CreateScannerError>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<T> RuleConfig for Box<T>
where T: RuleConfig + ?Sized,

Implementors§