Enum hostlink::protocol::ProtocolError
source · pub enum ProtocolError {
Show 13 variants
IllegalNodeId(u8),
MissingAtSymbol,
MissingNodeId,
IntParse(ParseIntError),
MissingHeaderCode,
UnknownCommand(String),
MissingTerminator,
MissingFcs,
InvalidTestData,
UnknownErrorCode(char, char),
ErrorCodeBadLength,
Device(DeviceError),
StatusParse(StatusParseError),
}
Expand description
Represents a protocol error.
Variants§
IllegalNodeId(u8)
Invalid Node ID.
MissingAtSymbol
Missing ‘@’ symbol at start.
MissingNodeId
Invalid or missing Node ID.
IntParse(ParseIntError)
Failed to parse string as integer.
MissingHeaderCode
Missing header code (command code).
UnknownCommand(String)
Unknown or unsupported command type.
MissingTerminator
Missing command terminator.
MissingFcs
Missing FCS checksum.
InvalidTestData
Test command’s message block contains invalid characters.
UnknownErrorCode(char, char)
ErrorCodeBadLength
Device(DeviceError)
StatusParse(StatusParseError)
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
source§impl From<DeviceError> for Error
impl From<DeviceError> for Error
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<Error> for Error
impl From<Error> for Error
source§fn from(source: ProtocolError) -> Self
fn from(source: ProtocolError) -> Self
Converts to this type from the input type.
source§impl From<ParseIntError> for Error
impl From<ParseIntError> for Error
source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
source§impl From<StatusParseError> for Error
impl From<StatusParseError> for Error
source§fn from(source: StatusParseError) -> Self
fn from(source: StatusParseError) -> Self
Converts to this type from the input type.
source§impl PartialEq for Error
impl PartialEq for Error
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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