(_vm: &VirtualMachine, args: &mut FuncArgs)
| 100 | |
| 101 | impl FromArgs for FuncArgs { |
| 102 | fn from_args(_vm: &VirtualMachine, args: &mut FuncArgs) -> Result<Self, ArgumentError> { |
| 103 | Ok(core::mem::take(args)) |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | impl FuncArgs { |
nothing calls this directly
no test coverage detected