Function format_time
Source pub fn format_time(seconds: f64) -> String
Expand description
Format time in seconds to MM:SS display string
§Arguments
seconds - Time in seconds
§Returns
Formatted string like “3:45” or “12:09”
§Example
let formatted = format_time(225.0);