(vm: &VirtualMachine)
| 857 | |
| 858 | #[pyfunction] |
| 859 | fn process_time_ns(vm: &VirtualMachine) -> PyResult<u64> { |
| 860 | Ok(get_process_time(vm)?.as_nanos() as u64) |
| 861 | } |
| 862 | |
| 863 | /// Data struct for struct_time |
| 864 | #[pystruct_sequence_data(try_from_object)] |
nothing calls this directly
no test coverage detected