pub struct CameraLens {
pub id: String,
pub name: String,
}Expand description
One capture device the app may pick, as reported by Camera::lenses.
id is the platform’s own handle for the device (an AVCaptureDevice
uniqueID on iOS, a camera2 id on Android); pass it back to
Camera::use_lens. name is for a button label: “Ultra wide”, “Wide”,
“Tele”.
Fields§
§id: String§name: StringTrait Implementations§
Source§impl Clone for CameraLens
impl Clone for CameraLens
Source§fn clone(&self) -> CameraLens
fn clone(&self) -> CameraLens
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§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