#[repr(u8)]pub enum LevelDrive {
    Disconnect = 2,
    Standard = 0,
    High = 1,
    ExtraHigh = 3,
}Expand description
Drive strength settings for a given output level.
Variants§
Disconnect = 2
Disconnect (do not drive the output at all)
Standard = 0
Standard
High = 1
High drive
ExtraHigh = 3
Extra high drive
Trait Implementations§
Source§impl Clone for LevelDrive
 
impl Clone for LevelDrive
Source§fn clone(&self) -> LevelDrive
 
fn clone(&self) -> LevelDrive
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
 
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for LevelDrive
 
impl Debug for LevelDrive
Source§impl Format for LevelDrive
 
impl Format for LevelDrive
Source§impl PartialEq for LevelDrive
 
impl PartialEq for LevelDrive
impl Copy for LevelDrive
impl StructuralPartialEq for LevelDrive
Auto Trait Implementations§
impl Freeze for LevelDrive
impl RefUnwindSafe for LevelDrive
impl Send for LevelDrive
impl Sync for LevelDrive
impl Unpin for LevelDrive
impl UnwindSafe for LevelDrive
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