pub enum Max6675Error<SpiError> {
SpiError(SpiError),
OpenCircuitError,
}Expand description
Some problem with the MAX6675 or its connections
Variants§
Trait Implementations§
Source§impl<SpiError: Clone> Clone for Max6675Error<SpiError>
impl<SpiError: Clone> Clone for Max6675Error<SpiError>
Source§fn clone(&self) -> Max6675Error<SpiError>
fn clone(&self) -> Max6675Error<SpiError>
Returns a duplicate 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<SpiError> Debug for Max6675Error<SpiError>
impl<SpiError> Debug for Max6675Error<SpiError>
Source§impl<SpiError> Display for Max6675Error<SpiError>
impl<SpiError> Display for Max6675Error<SpiError>
Source§impl<SpiError> From<SpiError> for Max6675Error<SpiError>
impl<SpiError> From<SpiError> for Max6675Error<SpiError>
Source§impl<SpiError: PartialEq> PartialEq for Max6675Error<SpiError>
impl<SpiError: PartialEq> PartialEq for Max6675Error<SpiError>
Source§impl<SpiError: PartialOrd> PartialOrd for Max6675Error<SpiError>
impl<SpiError: PartialOrd> PartialOrd for Max6675Error<SpiError>
Source§impl<SpiError> uDebug for Max6675Error<SpiError>
impl<SpiError> uDebug for Max6675Error<SpiError>
Source§impl<SpiError> uDisplay for Max6675Error<SpiError>
impl<SpiError> uDisplay for Max6675Error<SpiError>
impl<SpiError: Copy> Copy for Max6675Error<SpiError>
impl<SpiError> StructuralPartialEq for Max6675Error<SpiError>
Auto Trait Implementations§
impl<SpiError> Freeze for Max6675Error<SpiError>where
SpiError: Freeze,
impl<SpiError> RefUnwindSafe for Max6675Error<SpiError>where
SpiError: RefUnwindSafe,
impl<SpiError> Send for Max6675Error<SpiError>where
SpiError: Send,
impl<SpiError> Sync for Max6675Error<SpiError>where
SpiError: Sync,
impl<SpiError> Unpin for Max6675Error<SpiError>where
SpiError: Unpin,
impl<SpiError> UnwindSafe for Max6675Error<SpiError>where
SpiError: UnwindSafe,
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