Interface for a Stream Deck device
| 106 | |
| 107 | /// Interface for a Stream Deck device |
| 108 | pub struct StreamDeck { |
| 109 | /// Kind of the device |
| 110 | kind: Kind, |
| 111 | /// Connected HIDDevice |
| 112 | device: HidDevice, |
| 113 | /// Temporarily cache the image before sending it to the device |
| 114 | image_cache: RwLock<Vec<ImageCache>>, |
| 115 | } |
| 116 | |
| 117 | struct ImageCache { |
| 118 | key: u8, |
nothing calls this directly
no outgoing calls
no test coverage detected