pub struct CameraLens {
pub id: String,
pub name: String,
pub facing: LensFacing,
}Expand description
One capture device the application may pick.
id is the platform’s own handle for the device (an AVCaptureDevice
uniqueID on iOS, a camera2 id on Android, a device index on desktop); pass
it back to Camera::use_lens. name is for a button label: “Ultra
wide”, “Wide”, “Tele”.
Fields§
§id: String§name: String§facing: LensFacingWhich way the device points, so an application can offer back lenses and the front lens as different controls.
Trait Implementations§
Source§impl Clone for CameraLens
impl Clone for CameraLens
Source§impl Debug for CameraLens
impl Debug for CameraLens
impl Eq for CameraLens
Source§impl PartialEq for CameraLens
impl PartialEq for CameraLens
impl StructuralPartialEq for CameraLens
Auto Trait Implementations§
impl Freeze for CameraLens
impl RefUnwindSafe for CameraLens
impl Send for CameraLens
impl Sync for CameraLens
impl Unpin for CameraLens
impl UnsafeUnpin for CameraLens
impl UnwindSafe for CameraLens
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