pub fn micros_to_nanos(micros: f64) -> u64
Expand description
Converts microseconds (μs) to nanoseconds (ns).
Casting f64 to u64 by truncating the fractional part is intentional for unit conversion, which may lose precision and drop negative values after clamping.