#[repr(u32)]
pub enum ExifLightsourceValue {
EV_LIGHTSOURCE_UNKNOWN,
EV_LIGHTSOURCE_DAYLIGHT,
EV_LIGHTSOURCE_FLUORESCENT,
EV_LIGHTSOURCE_TUNGSTEN,
EV_LIGHTSOURCE_STANDARD_A,
EV_LIGHTSOURCE_STANDARD_B,
EV_LIGHTSOURCE_STANDARD_C,
EV_LIGHTSOURCE_D55,
EV_LIGHTSOURCE_D65,
EV_LIGHTSOURCE_D75,
EV_LIGHTSOURCE_OTHER,
}Variants
EV_LIGHTSOURCE_UNKNOWN
EV_LIGHTSOURCE_DAYLIGHT
EV_LIGHTSOURCE_FLUORESCENT
EV_LIGHTSOURCE_TUNGSTEN
EV_LIGHTSOURCE_STANDARD_A
EV_LIGHTSOURCE_STANDARD_B
EV_LIGHTSOURCE_STANDARD_C
EV_LIGHTSOURCE_D55
EV_LIGHTSOURCE_D65
EV_LIGHTSOURCE_D75
EV_LIGHTSOURCE_OTHER
Trait Implementations
sourceimpl Clone for ExifLightsourceValue
impl Clone for ExifLightsourceValue
sourcefn clone(&self) -> ExifLightsourceValue
fn clone(&self) -> ExifLightsourceValue
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ExifLightsourceValue
impl Debug for ExifLightsourceValue
sourceimpl Hash for ExifLightsourceValue
impl Hash for ExifLightsourceValue
sourceimpl PartialEq<ExifLightsourceValue> for ExifLightsourceValue
impl PartialEq<ExifLightsourceValue> for ExifLightsourceValue
sourcefn eq(&self, other: &ExifLightsourceValue) -> bool
fn eq(&self, other: &ExifLightsourceValue) -> bool
impl Copy for ExifLightsourceValue
impl Eq for ExifLightsourceValue
impl StructuralEq for ExifLightsourceValue
impl StructuralPartialEq for ExifLightsourceValue
Auto Trait Implementations
impl RefUnwindSafe for ExifLightsourceValue
impl Send for ExifLightsourceValue
impl Sync for ExifLightsourceValue
impl Unpin for ExifLightsourceValue
impl UnwindSafe for ExifLightsourceValue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more