pub enum BrightnessOption<'e> {
Level(f32),
LevelWithColor(f32, &'e ColorOption),
}Variants§
Level(f32)
LevelWithColor(f32, &'e ColorOption)
Auto Trait Implementations§
impl<'e> Freeze for BrightnessOption<'e>
impl<'e> RefUnwindSafe for BrightnessOption<'e>
impl<'e> Send for BrightnessOption<'e>
impl<'e> Sync for BrightnessOption<'e>
impl<'e> Unpin for BrightnessOption<'e>
impl<'e> UnwindSafe for BrightnessOption<'e>
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