aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/raw/mod.rs
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2025-07-28 14:21:55 +0000
committerDario Nieuwenhuis <[email protected]>2025-07-29 00:36:22 +0200
commit19e026717d7513c19668ae03d1fd36cfcd865222 (patch)
tree11e88596c9e021040700e9e4212ed45e4c799c91 /embassy-executor/src/raw/mod.rs
parent8f64a14bebe711962af0136a5acd2b3cef509402 (diff)
parent98595f659c309703aab411b6b3be7579b6e93c5d (diff)
Merge pull request #4476 from rursprung/impl-Debug-for-Delay
`embassy-time`: add missing `Debug` & `defmt::Format` derives
Diffstat (limited to 'embassy-executor/src/raw/mod.rs')
-rw-r--r--embassy-executor/src/raw/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/src/raw/mod.rs b/embassy-executor/src/raw/mod.rs
index 913da2e25..c8f1f46c2 100644
--- a/embassy-executor/src/raw/mod.rs
+++ b/embassy-executor/src/raw/mod.rs
@@ -98,7 +98,7 @@ pub(crate) struct TaskHeader {
98} 98}
99 99
100/// This is essentially a `&'static TaskStorage<F>` where the type of the future has been erased. 100/// This is essentially a `&'static TaskStorage<F>` where the type of the future has been erased.
101#[derive(Clone, Copy, PartialEq)] 101#[derive(Debug, Clone, Copy, PartialEq)]
102pub struct TaskRef { 102pub struct TaskRef {
103 ptr: NonNull<TaskHeader>, 103 ptr: NonNull<TaskHeader>,
104} 104}