#[non_exhaustive]pub enum FrameError {
DataTooLong {
max: u8,
actual: usize,
},
Io {
source: Error,
},
InvalidFrame {
data: Vec<u8>,
},
FrameDataMismatch {
data: Vec<u8>,
expected: usize,
actual: usize,
},
BadChecksum {
data: Vec<u8>,
expected: u8,
actual: u8,
},
}Expand description
Errors related to reading/writing Frames of data.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DataTooLong
Data length exceeded the maximum of 255 bytes.
Fields
Io
Failed reading/writing a Frame of data.
InvalidFrame
Failed to parse data into a Frame.
FrameDataMismatch
Frame data didn’t match declared length.
Fields
BadChecksum
Frame checksum didn’t match declared checksum.
Trait Implementations§
Source§impl Debug for FrameError
impl Debug for FrameError
Source§impl Display for FrameError
impl Display for FrameError
Source§impl Error for FrameError
impl Error for FrameError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for FrameError
impl !RefUnwindSafe for FrameError
impl Send for FrameError
impl Sync for FrameError
impl Unpin for FrameError
impl !UnwindSafe for FrameError
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