#[repr(u8)]pub enum Resolutionselect {
None = 0,
Dith4 = 1,
Dith5 = 2,
Dith6 = 3,
}
Expand description
Enhanced Resolution
Value on reset: 0
Variants§
None = 0
0: Dithering is disabled
Dith4 = 1
1: Dithering is done every 16 PWM frames
Dith5 = 2
2: Dithering is done every 32 PWM frames
Dith6 = 3
3: Dithering is done every 64 PWM frames
Trait Implementations§
Source§impl Clone for Resolutionselect
impl Clone for Resolutionselect
Source§fn clone(&self) -> Resolutionselect
fn clone(&self) -> Resolutionselect
Returns a copy 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 Resolutionselect
impl Debug for Resolutionselect
Source§impl From<Resolutionselect> for u8
impl From<Resolutionselect> for u8
Source§fn from(variant: Resolutionselect) -> Self
fn from(variant: Resolutionselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Resolutionselect
impl PartialEq for Resolutionselect
impl Copy for Resolutionselect
impl Eq for Resolutionselect
impl IsEnum for Resolutionselect
impl StructuralPartialEq for Resolutionselect
Auto Trait Implementations§
impl Freeze for Resolutionselect
impl RefUnwindSafe for Resolutionselect
impl Send for Resolutionselect
impl Sync for Resolutionselect
impl Unpin for Resolutionselect
impl UnwindSafe for Resolutionselect
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