(fmt: IntoStructFormatBytes, args: PosArgs, vm: &VirtualMachine)
| 104 | |
| 105 | #[pyfunction] |
| 106 | fn pack(fmt: IntoStructFormatBytes, args: PosArgs, vm: &VirtualMachine) -> PyResult<Vec<u8>> { |
| 107 | fmt.format_spec(vm)?.pack(args.into_vec(), vm) |
| 108 | } |
| 109 | |
| 110 | #[pyfunction] |
| 111 | fn pack_into( |
no test coverage detected