Lists all available video capture devices. This method initializes Media Foundation if needed and enumerates all connected video capture devices. # Returns A vector of [`DeviceInfo`] containing device name, ID, and backend info. Returns an empty vector if no devices are found.
(&self)
| 117 | /// A vector of [`DeviceInfo`] containing device name, ID, and backend info. |
| 118 | /// Returns an empty vector if no devices are found. |
| 119 | fn list_devices(&self) -> Result<Vec<DeviceInfo>> { |
| 120 | device::list_devices() |
| 121 | } |
| 122 | |
| 123 | /// Opens a camera device for video capture. |
| 124 | /// |
no test coverage detected