pub enum DecodingError {
Address,
Data,
Validation,
RemoteControlError,
}Expand description
Decode State machine error
Variants§
Address
Error while decoding address
Data
Error decoding data bits
Validation
Validation Error
RemoteControlError
Remotecontrol decode error
Trait Implementations§
Source§impl Clone for DecodingError
impl Clone for DecodingError
Source§fn clone(&self) -> DecodingError
fn clone(&self) -> DecodingError
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 Debug for DecodingError
impl Debug for DecodingError
Source§impl<PinErr> From<DecodingError> for Error<PinErr>
impl<PinErr> From<DecodingError> for Error<PinErr>
Source§fn from(derr: DecodingError) -> Error<PinErr>
fn from(derr: DecodingError) -> Error<PinErr>
Converts to this type from the input type.
Source§impl PartialEq for DecodingError
impl PartialEq for DecodingError
impl Copy for DecodingError
impl Eq for DecodingError
impl StructuralPartialEq for DecodingError
Auto Trait Implementations§
impl Freeze for DecodingError
impl RefUnwindSafe for DecodingError
impl Send for DecodingError
impl Sync for DecodingError
impl Unpin for DecodingError
impl UnwindSafe for DecodingError
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