(self, obj: PyObjectRef, vm: &VirtualMachine)
| 11 | pub trait IntoFuncArgs: Sized { |
| 12 | fn into_args(self, vm: &VirtualMachine) -> FuncArgs; |
| 13 | fn into_method_args(self, obj: PyObjectRef, vm: &VirtualMachine) -> FuncArgs { |
| 14 | let mut args = self.into_args(vm); |
| 15 | args.prepend_arg(obj); |
| 16 | args |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | impl<T> IntoFuncArgs for T |
no test coverage detected