Returns product string of the device
(&self)
| 147 | |
| 148 | /// Returns product string of the device |
| 149 | pub fn product(&self) -> Result<String, StreamDeckError> { |
| 150 | Ok(self.device.get_product_string()?.unwrap_or_else(|| "Unknown".to_string())) |
| 151 | } |
| 152 | |
| 153 | /// Returns serial number of the device |
| 154 | pub fn serial_number(&self) -> Result<String, StreamDeckError> { |
nothing calls this directly
no outgoing calls
no test coverage detected