Начал изучать rust
int seconds = 900;
string fromTimeSpan = TimeSpan.FromSeconds(seconds).ToString(@"mm\:ss\:ff");
Console.WriteLine($"from TimeSpan: {fromTimeSpan}");
int justCalculatedMins = seconds / 60;
int justCalculatedSecs = seconds % 60;
Console.WriteLine($"calculated: {justCalculatedMins,0:D2}:{justCalculatedSecs,0:D2}");
memcpy(arr, new_arr, size*sizeof(int32_t));//копируем имеющиеся данные