task: core++

This commit is contained in:
Victoria Fischer 2024-12-01 21:07:27 +01:00
parent d6d4d5b76b
commit d72f4c9a85

View File

@ -22,7 +22,7 @@ struct ScheduledTask {
task: Box<dyn Task>,
}
impl std::fmt::Debug for ScheduledTask {
impl core::fmt::Debug for ScheduledTask {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("ScheduledTask")
.field("task", &self.task.name())