#[repr(u32)]pub enum ExifLightsourceValue {
EV_LIGHTSOURCE_UNKNOWN = 0,
EV_LIGHTSOURCE_DAYLIGHT = 1,
EV_LIGHTSOURCE_FLUORESCENT = 2,
EV_LIGHTSOURCE_TUNGSTEN = 3,
EV_LIGHTSOURCE_STANDARD_A = 17,
EV_LIGHTSOURCE_STANDARD_B = 18,
EV_LIGHTSOURCE_STANDARD_C = 19,
EV_LIGHTSOURCE_D55 = 20,
EV_LIGHTSOURCE_D65 = 21,
EV_LIGHTSOURCE_D75 = 22,
EV_LIGHTSOURCE_OTHER = 255,
}Variants§
EV_LIGHTSOURCE_UNKNOWN = 0
EV_LIGHTSOURCE_DAYLIGHT = 1
EV_LIGHTSOURCE_FLUORESCENT = 2
EV_LIGHTSOURCE_TUNGSTEN = 3
EV_LIGHTSOURCE_STANDARD_A = 17
EV_LIGHTSOURCE_STANDARD_B = 18
EV_LIGHTSOURCE_STANDARD_C = 19
EV_LIGHTSOURCE_D55 = 20
EV_LIGHTSOURCE_D65 = 21
EV_LIGHTSOURCE_D75 = 22
EV_LIGHTSOURCE_OTHER = 255
Trait Implementations§
Source§impl Clone for ExifLightsourceValue
impl Clone for ExifLightsourceValue
Source§fn clone(&self) -> ExifLightsourceValue
fn clone(&self) -> ExifLightsourceValue
Returns a duplicate 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 moreSource§impl Debug for ExifLightsourceValue
impl Debug for ExifLightsourceValue
Source§impl Hash for ExifLightsourceValue
impl Hash for ExifLightsourceValue
Source§impl PartialEq for ExifLightsourceValue
impl PartialEq for ExifLightsourceValue
impl Copy for ExifLightsourceValue
impl Eq for ExifLightsourceValue
impl StructuralPartialEq for ExifLightsourceValue
Auto Trait Implementations§
impl Freeze for ExifLightsourceValue
impl RefUnwindSafe for ExifLightsourceValue
impl Send for ExifLightsourceValue
impl Sync for ExifLightsourceValue
impl Unpin for ExifLightsourceValue
impl UnwindSafe for ExifLightsourceValue
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