pub enum FrameError {
FrameIsStandard,
FrameIsRemote,
FrameIdMissing,
WrongSize,
CobsError,
}Variants§
FrameIsStandard
Received a standard frame instead of an extended one
FrameIsRemote
Received a remote frame instead of a data one
FrameIdMissing
Part of the frame id is missing
WrongSize
Frame has a different size than expected
CobsError
Trait Implementations§
Source§impl Debug for FrameError
impl Debug for FrameError
Source§impl PartialEq for FrameError
impl PartialEq for FrameError
impl StructuralPartialEq for FrameError
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