defmt feature doesn't really exist here

This commit is contained in:
Dario Nieuwenhuis 2020-10-19 21:46:25 +02:00
parent a2e73cb549
commit 53a064445f

View File

@ -65,8 +65,7 @@ pub struct Task<F: Future + 'static> {
future: UninitCell<F>, // Valid if STATE_RUNNING
}
#[derive(Copy, Clone, Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Copy, Clone, Debug, defmt::Format)]
pub enum SpawnError {
Busy,
}