#[repr(u8)]pub enum InputPinError {
PinClk = 0,
PinDt = 1,
PinIdx = 2,
}
Expand description
An error indicating an input pin issue.
Variants§
PinClk = 0
Failed reading clock pin.
PinDt = 1
Failed reading data pin.
PinIdx = 2
Failed reading index pin.
Trait Implementations§
Source§impl Clone for InputPinError
impl Clone for InputPinError
Source§fn clone(&self) -> InputPinError
fn clone(&self) -> InputPinError
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 Debug for InputPinError
impl Debug for InputPinError
Source§impl PartialEq for InputPinError
impl PartialEq for InputPinError
impl Copy for InputPinError
impl Eq for InputPinError
impl StructuralPartialEq for InputPinError
Auto Trait Implementations§
impl Freeze for InputPinError
impl RefUnwindSafe for InputPinError
impl Send for InputPinError
impl Sync for InputPinError
impl Unpin for InputPinError
impl UnwindSafe for InputPinError
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