pub trait ServiceHandler: Send + Sync + 'static { // Required method fn call(&self, input: Fields) -> BoxFuture<'static, Result<Object, Error>>; }