pub trait DataEnricher: Send + Sync { // Required method fn enrich( &self, data: &mut PipelineData<Box<dyn Any + Send + Sync>>, ) -> Result<()>; }