Forráskód Böngészése

fix tui driven example

Evan Almloff 2 éve
szülő
commit
f03e08fc3b
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      packages/tui/examples/driven.rs

+ 1 - 1
packages/tui/examples/driven.rs

@@ -198,7 +198,7 @@ impl Renderer<Rc<EventData>> for Test {
         }
     }
 
-    fn poll_async(&mut self) -> std::pin::Pin<Box<dyn futures::Future<Output = ()> + Send>> {
+    fn poll_async(&mut self) -> std::pin::Pin<Box<dyn futures::Future<Output = ()> + '_>> {
         Box::pin(async move { tokio::time::sleep(std::time::Duration::from_millis(1000)).await })
     }
 }