pub enum LightingCondition {
Unknown,
Bright,
Normal,
Dim,
Dark,
Backlit,
Spotlight,
}Expand description
Lighting condition
Variants§
Trait Implementations§
Source§impl Clone for LightingCondition
impl Clone for LightingCondition
Source§fn clone(&self) -> LightingCondition
fn clone(&self) -> LightingCondition
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 LightingCondition
impl Debug for LightingCondition
Source§impl PartialEq for LightingCondition
impl PartialEq for LightingCondition
impl Copy for LightingCondition
impl Eq for LightingCondition
impl StructuralPartialEq for LightingCondition
Auto Trait Implementations§
impl Freeze for LightingCondition
impl RefUnwindSafe for LightingCondition
impl Send for LightingCondition
impl Sync for LightingCondition
impl Unpin for LightingCondition
impl UnsafeUnpin for LightingCondition
impl UnwindSafe for LightingCondition
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