pub enum ColorModeEnum {
CurrentHueAndCurrentSaturation,
CurrentXAndCurrentY,
ColorTemperatureMireds,
Unknown(u8),
}Expand description
ColorModeEnum (enum8).
Variants§
CurrentHueAndCurrentSaturation
CurrentHueAndCurrentSaturation = 0.
CurrentXAndCurrentY
CurrentXAndCurrentY = 1.
ColorTemperatureMireds
ColorTemperatureMireds = 2.
Unknown(u8)
A value not known to this codegen revision.
Implementations§
Trait Implementations§
Source§impl Clone for ColorModeEnum
impl Clone for ColorModeEnum
Source§fn clone(&self) -> ColorModeEnum
fn clone(&self) -> ColorModeEnum
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 moreimpl Copy for ColorModeEnum
Source§impl Debug for ColorModeEnum
impl Debug for ColorModeEnum
impl Eq for ColorModeEnum
Source§impl PartialEq for ColorModeEnum
impl PartialEq for ColorModeEnum
impl StructuralPartialEq for ColorModeEnum
Auto Trait Implementations§
impl Freeze for ColorModeEnum
impl RefUnwindSafe for ColorModeEnum
impl Send for ColorModeEnum
impl Sync for ColorModeEnum
impl Unpin for ColorModeEnum
impl UnsafeUnpin for ColorModeEnum
impl UnwindSafe for ColorModeEnum
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