executor: timers must be used

Max Brunsfeld created

Change summary

crates/gpui/src/executor.rs | 1 +
1 file changed, 1 insertion(+)

Detailed changes

crates/gpui/src/executor.rs 🔗

@@ -106,6 +106,7 @@ pub struct Deterministic {
     parker: parking_lot::Mutex<parking::Parker>,
 }
 
+#[must_use]
 pub enum Timer {
     Production(smol::Timer),
     #[cfg(any(test, feature = "test-support"))]