pub enum PinStatus {
Low,
High,
}Expand description
Status enum for pins.
PinStatus::High means that the pin is at VDD, PinStatus::Low means that the pin is at GND.
Variants§
Trait Implementations§
impl Copy for PinStatus
impl Eq for PinStatus
impl StructuralPartialEq for PinStatus
Auto Trait Implementations§
impl Freeze for PinStatus
impl RefUnwindSafe for PinStatus
impl Send for PinStatus
impl Sync for PinStatus
impl Unpin for PinStatus
impl UnwindSafe for PinStatus
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