Skip to main content

ProcessorRegistry

Type Alias ProcessorRegistry 

Source
pub type ProcessorRegistry = HashMap<String, Arc<dyn Processor>>;
Expand description

Registry mapping processor names to processor implementations.

Custom processors registered with crate::render::RuleSet::from_config_with_processors extend the builtin registry. If a custom processor uses the same name as a builtin, the custom implementation takes precedence.

Aliased Typeยง

pub struct ProcessorRegistry { /* private fields */ }