pub trait UnacquiredCameraImpl {
// Required method
fn acquire(self: Box<Self>) -> Result<Arc<Mutex<dyn CameraImpl>>, Error>;
}
Expand description
A camera which has been detected, but not yet exclusively acquired for changing.
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.