Returns manufacturer string of the device
(&self)
| 67 | |
| 68 | /// Returns manufacturer string of the device |
| 69 | pub async fn manufacturer(&self) -> Result<String, StreamDeckError> { |
| 70 | let device = self.device.lock().await; |
| 71 | block_in_place(move || device.manufacturer()) |
| 72 | } |
| 73 | |
| 74 | /// Returns product string of the device |
| 75 | pub async fn product(&self) -> Result<String, StreamDeckError> { |
nothing calls this directly
no outgoing calls
no test coverage detected