pub enum OutputPinLevel {
High,
Low,
}Expand description
General purpose output pin logic level
Variants§
Trait Implementations§
Source§impl Clone for OutputPinLevel
impl Clone for OutputPinLevel
Source§fn clone(&self) -> OutputPinLevel
fn clone(&self) -> OutputPinLevel
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 moreimpl Copy for OutputPinLevel
Source§impl Debug for OutputPinLevel
impl Debug for OutputPinLevel
impl Eq for OutputPinLevel
Source§impl PartialEq for OutputPinLevel
impl PartialEq for OutputPinLevel
Source§fn eq(&self, other: &OutputPinLevel) -> bool
fn eq(&self, other: &OutputPinLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OutputPinLevel
Auto Trait Implementations§
impl Freeze for OutputPinLevel
impl RefUnwindSafe for OutputPinLevel
impl Send for OutputPinLevel
impl Sync for OutputPinLevel
impl Unpin for OutputPinLevel
impl UnsafeUnpin for OutputPinLevel
impl UnwindSafe for OutputPinLevel
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