(
&mut self,
runner: &mut MaterialApplication,
context: &mut Self::Context,
event: &WindowEvent,
)
| 406 | } |
| 407 | |
| 408 | fn before_event( |
| 409 | &mut self, |
| 410 | runner: &mut MaterialApplication, |
| 411 | context: &mut Self::Context, |
| 412 | event: &WindowEvent, |
| 413 | ) -> Pin<Box<dyn Future<Output = ()> + Send>> { |
| 414 | Box::pin(future::ready(())) |
| 415 | } |
| 416 | |
| 417 | fn after_event( |
| 418 | &mut self, |