Checks if there's data received or not
(&self)
| 100 | impl StreamDeckInput { |
| 101 | /// Checks if there's data received or not |
| 102 | pub fn is_empty(&self) -> bool { |
| 103 | matches!(self, StreamDeckInput::NoData) |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | /// Interface for a Stream Deck device |
no outgoing calls
no test coverage detected