#[repr(u8)]pub enum Gainselect {
    _1x = 0,
    _2x = 1,
    _4x = 2,
    _8x = 3,
    _16x = 4,
    Div2 = 15,
}Expand description
Gain Factor Selection
Value on reset: 0
Variants§
Trait Implementations§
Source§impl Clone for Gainselect
 
impl Clone for Gainselect
Source§fn clone(&self) -> Gainselect
 
fn clone(&self) -> Gainselect
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 Gainselect
 
impl Debug for Gainselect
Source§impl From<Gainselect> for u8
 
impl From<Gainselect> for u8
Source§fn from(variant: Gainselect) -> Self
 
fn from(variant: Gainselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Gainselect
 
impl PartialEq for Gainselect
impl Copy for Gainselect
impl Eq for Gainselect
impl IsEnum for Gainselect
impl StructuralPartialEq for Gainselect
Auto Trait Implementations§
impl Freeze for Gainselect
impl RefUnwindSafe for Gainselect
impl Send for Gainselect
impl Sync for Gainselect
impl Unpin for Gainselect
impl UnwindSafe for Gainselect
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