pub trait OperatorFactory: Send + Sync { // Required method fn load(&self, uri: &str) -> Result<Operator, Error>; }