pub enum DriveStrength {
_5mA,
_10mA,
_20mA,
_40mA,
}
Expand description
Available drive strength settings.
Variants§
Trait Implementations§
Source§impl Clone for DriveStrength
impl Clone for DriveStrength
Source§fn clone(&self) -> DriveStrength
fn clone(&self) -> DriveStrength
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 From<DriveStrength> for DriveStrength
impl From<DriveStrength> for DriveStrength
Source§fn from(drive_strength: DriveStrength) -> Self
fn from(drive_strength: DriveStrength) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DriveStrength
impl PartialEq for DriveStrength
impl Copy for DriveStrength
impl Eq for DriveStrength
impl StructuralPartialEq for DriveStrength
Auto Trait Implementations§
impl Freeze for DriveStrength
impl RefUnwindSafe for DriveStrength
impl Send for DriveStrength
impl Sync for DriveStrength
impl Unpin for DriveStrength
impl UnwindSafe for DriveStrength
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