(
&mut self,
runner: &mut MaterialApplication,
context: &mut Self::Context,
x: i32,
y: i32,
)
| 142 | } |
| 143 | |
| 144 | fn moved( |
| 145 | &mut self, |
| 146 | runner: &mut MaterialApplication, |
| 147 | context: &mut Self::Context, |
| 148 | x: i32, |
| 149 | y: i32, |
| 150 | ) -> Pin<Box<dyn Future<Output = ()> + Send>> { |
| 151 | Box::pin(future::ready(())) |
| 152 | } |
| 153 | |
| 154 | fn close( |
| 155 | &mut self, |