Crawls `/dev/input` for evdev devices. Will not bubble up any errors in opening devices or traversing the directory. Instead returns an empty iterator or omits the devices that could not be opened.
()
| 476 | /// Will not bubble up any errors in opening devices or traversing the directory. Instead returns |
| 477 | /// an empty iterator or omits the devices that could not be opened. |
| 478 | pub fn enumerate() -> EnumerateDevices { |
| 479 | EnumerateDevices { |
| 480 | inner: raw_stream::enumerate(), |
| 481 | } |
| 482 | } |
| 483 | |
| 484 | /// An iterator over currently connected evdev devices. |
| 485 | pub struct EnumerateDevices { |
no outgoing calls
searching dependent graphs…