(&mut self, _device: &str, _config: &CameraConfig)
| 23 | } |
| 24 | |
| 25 | pub fn open(&mut self, _device: &str, _config: &CameraConfig) -> Result<ResolvedConfig> { |
| 26 | Err(CameraError::DeviceNotFound( |
| 27 | "Windows Media Foundation backend is not yet implemented".to_string(), |
| 28 | )) |
| 29 | } |
| 30 | |
| 31 | pub fn start(&mut self) -> Result<()> { |
| 32 | Err(CameraError::StreamNotStarted) |
nothing calls this directly
no outgoing calls
no test coverage detected