(&self, data: ArgBytesLike, vm: &VirtualMachine)
| 284 | |
| 285 | #[pymethod] |
| 286 | fn unpack(&self, data: ArgBytesLike, vm: &VirtualMachine) -> PyResult<PyTupleRef> { |
| 287 | data.with_ref(|buf| self.spec.unpack(buf, vm)) |
| 288 | } |
| 289 | |
| 290 | #[pymethod] |
| 291 | fn unpack_from(&self, args: UpdateFromArgs, vm: &VirtualMachine) -> PyResult<PyTupleRef> { |
no test coverage detected