pub enum UhfError {
Transport(String),
InvalidParameter(String),
InvalidResponse(String),
}Expand description
Errors that can occur during RFID operations
Variants§
Transport(String)
Transport layer error (UART, serial, etc.)
InvalidParameter(String)
Invalid parameter passed to a function
InvalidResponse(String)
Invalid response received from the reader
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UhfError
impl RefUnwindSafe for UhfError
impl Send for UhfError
impl Sync for UhfError
impl Unpin for UhfError
impl UnwindSafe for UhfError
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