Mateusz S. Szczygieł

Results 5 issues of Mateusz S. Szczygieł

Hello, std::time::SystemTime serializes incorrectly to `{"secs_since_epoch":1634823736,"nanos_since_epoch":647664740}` in json format. The name `nanos_since_epoch` is misleading, as it should represent the number of sub nanoseconds. The fix seems to be very simple,...

Hello, I have a piece of code which according to my knowledge does not violate the Vulkan spec. ```rust let first_query = 0; let query_count = 2; let flags =...

ref https://github.com/lbeckman314/md2tex/pull/7 Also added test cases for Rust By Example and The Rust Programing language

Hello, my eBPF program uses this particular method for inserting elements into a per-CPU hash map ```rust let Err(err) = map.insert(&key, &value, BPF_NOEXIST as _) else { return Ok(()); };...