From 98595f659c309703aab411b6b3be7579b6e93c5d Mon Sep 17 00:00:00 2001 From: Ralph Ursprung Date: Mon, 28 Jul 2025 15:37:34 +0200 Subject: `embassy-time`: add missing `Debug` & `defmt::Format` derives `defmt::Format` is *not* implemented for `MockDriver` and `InnerMockDriver` because the former contains the latter and the latter is using `Queue` from `embassy-time-queue-utils` which so far does not have a `defmt` dependency. since this is just a mock driver it shouldn't be relevant if it has no `defmt::Format` impl. --- embassy-time-queue-utils/src/queue_integrated.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'embassy-time-queue-utils/src/queue_integrated.rs') diff --git a/embassy-time-queue-utils/src/queue_integrated.rs b/embassy-time-queue-utils/src/queue_integrated.rs index 246cf1d63..748cd7843 100644 --- a/embassy-time-queue-utils/src/queue_integrated.rs +++ b/embassy-time-queue-utils/src/queue_integrated.rs @@ -6,6 +6,7 @@ use core::task::Waker; use embassy_executor::raw::TaskRef; /// A timer queue, with items integrated into tasks. +#[derive(Debug)] pub struct Queue { head: Cell>, } -- cgit