pub trait Call: Send + Sync { // Required method fn call( &self, args: Arguments, ctx: Ctx ) -> BoxFuture<'static, Result<Object>>; }