pub enum WiegandError {
InvalidParity,
InvalidRange,
}Expand description
Encoding issues
Variants§
InvalidParity
Parity bit was wrong, possible bad read
InvalidRange
Attempting to access a bit range [start, end) where start > end
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WiegandError
impl RefUnwindSafe for WiegandError
impl Send for WiegandError
impl Sync for WiegandError
impl Unpin for WiegandError
impl UnwindSafe for WiegandError
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