(&self, args: impl IntoFuncArgs, vm: &VirtualMachine)
| 19 | impl ArgCallable { |
| 20 | #[inline(always)] |
| 21 | pub fn invoke(&self, args: impl IntoFuncArgs, vm: &VirtualMachine) -> PyResult { |
| 22 | let args = args.into_args(vm); |
| 23 | (self.call)(&self.obj, args, vm) |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | impl core::fmt::Debug for ArgCallable { |