pub enum TerminalCurrent {
I24mA,
I52mA,
I80mA,
I108mA,
}Variants§
Trait Implementations§
Source§impl Clone for TerminalCurrent
impl Clone for TerminalCurrent
Source§fn clone(&self) -> TerminalCurrent
fn clone(&self) -> TerminalCurrent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TerminalCurrent
impl Debug for TerminalCurrent
Source§impl PartialEq for TerminalCurrent
impl PartialEq for TerminalCurrent
Source§fn eq(&self, other: &TerminalCurrent) -> bool
fn eq(&self, other: &TerminalCurrent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Specifier for TerminalCurrent
impl Specifier for TerminalCurrent
Source§type InOut = TerminalCurrent
type InOut = TerminalCurrent
The interface type of the specifier. Read more
Source§fn into_bytes(input: Self::InOut) -> Result<Self::Bytes, OutOfBounds>
fn into_bytes(input: Self::InOut) -> Result<Self::Bytes, OutOfBounds>
Converts some bytes into the in-out type. Read more
Source§fn from_bytes(
bytes: Self::Bytes,
) -> Result<Self::InOut, InvalidBitPattern<Self::Bytes>>
fn from_bytes( bytes: Self::Bytes, ) -> Result<Self::InOut, InvalidBitPattern<Self::Bytes>>
Converts the given bytes into the in-out type. Read more
impl Copy for TerminalCurrent
impl Eq for TerminalCurrent
impl StructuralPartialEq for TerminalCurrent
Auto Trait Implementations§
impl Freeze for TerminalCurrent
impl RefUnwindSafe for TerminalCurrent
impl Send for TerminalCurrent
impl Sync for TerminalCurrent
impl Unpin for TerminalCurrent
impl UnsafeUnpin for TerminalCurrent
impl UnwindSafe for TerminalCurrent
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