pub struct UnacquiredCamera {
id: CameraId,
device: Box<dyn UnacquiredCameraImpl>,
}
Expand description
A detected camera device.
Note: to avoid some complexity, querying controls requires acquiring the camera. If you need controls on a camera you can’t acquire, please get in touch.
Fields§
§id: CameraId
§device: Box<dyn UnacquiredCameraImpl>
Implementations§
Auto Trait Implementations§
impl Freeze for UnacquiredCamera
impl !RefUnwindSafe for UnacquiredCamera
impl !Send for UnacquiredCamera
impl !Sync for UnacquiredCamera
impl Unpin for UnacquiredCamera
impl !UnwindSafe for UnacquiredCamera
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more