Procházet zdrojové kódy

fix tui driven example

Evan Almloff před 2 roky
rodič
revize
f03e08fc3b
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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 })
     }
 }