pub trait UnacquiredCameraImpl { // Required method fn acquire(self: Box<Self>) -> Result<Arc<Mutex<dyn CameraImpl>>, Error>; }
A camera which has been detected, but not yet exclusively acquired for changing.
Locks the camera for exlusive use, including the modification of its state.