Returns product string of the device
(&self)
| 73 | |
| 74 | /// Returns product string of the device |
| 75 | pub async fn product(&self) -> Result<String, StreamDeckError> { |
| 76 | let device = self.device.lock().await; |
| 77 | block_in_place(move || device.product()) |
| 78 | } |
| 79 | |
| 80 | /// Returns serial number of the device |
| 81 | pub async fn serial_number(&self) -> Result<String, StreamDeckError> { |
nothing calls this directly
no outgoing calls
no test coverage detected