Flushes the button's image to the device
(&self)
| 174 | |
| 175 | /// Flushes the button's image to the device |
| 176 | pub async fn flush(&self) -> Result<(), StreamDeckError> { |
| 177 | let device = self.device.lock().await; |
| 178 | block_in_place(move || device.flush()) |
| 179 | } |
| 180 | |
| 181 | /// Returns button state reader for this device |
| 182 | pub fn get_reader(&self) -> Arc<AsyncDeviceStateReader> { |
nothing calls this directly
no outgoing calls
no test coverage detected