pub struct CameraInfo {
device: Device,
id: CameraId,
sensor: EntityName,
}
Expand description
Information about present camera The camera is defined as a sensor which can reach an output, without specifying any path between them. The camera may fail to get acquired if all outputs are already acquired by other cameras.
Fields§
§device: Device
Information about the media device
id: CameraId
ID assigned by this library (and the relevant backend)
sensor: EntityName
The sensor defining this camera
Implementations§
Source§impl CameraInfo
impl CameraInfo
Trait Implementations§
Source§impl Clone for CameraInfo
impl Clone for CameraInfo
Source§fn clone(&self) -> CameraInfo
fn clone(&self) -> CameraInfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for CameraInfo
impl RefUnwindSafe for CameraInfo
impl Send for CameraInfo
impl Sync for CameraInfo
impl Unpin for CameraInfo
impl UnwindSafe for CameraInfo
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