pub trait TransformArgument<A, O: Into<Value>, R: Into<TransformResult<O>>>:
Send
+ Sync
+ 'static {
// Required method
fn call(&self, args: Arguments, ctx: Ctx) -> BoxFuture<'static, R>;
}pub trait TransformArgument<A, O: Into<Value>, R: Into<TransformResult<O>>>:
Send
+ Sync
+ 'static {
// Required method
fn call(&self, args: Arguments, ctx: Ctx) -> BoxFuture<'static, R>;
}