Returns serial number of the device
(&self)
| 79 | |
| 80 | /// Returns serial number of the device |
| 81 | pub async fn serial_number(&self) -> Result<String, StreamDeckError> { |
| 82 | let device = self.device.lock().await; |
| 83 | block_in_place(move || device.serial_number()) |
| 84 | } |
| 85 | |
| 86 | /// Returns firmware version of the StreamDeck |
| 87 | pub async fn firmware_version(&self) -> Result<String, StreamDeckError> { |
nothing calls this directly
no outgoing calls
no test coverage detected