Enum serial_line_ip::Error
source · pub enum Error {
NoOutputSpaceForHeader,
NoOutputSpaceForEndByte,
BadHeaderDecode,
BadEscapeSequenceDecode,
}Expand description
Errors encountered by SLIP.
Variants§
NoOutputSpaceForHeader
The encoder does not have enough space to write the SLIP header.
NoOutputSpaceForEndByte
The encoder does not have enough space to write the final SLIP end byte.
BadHeaderDecode
The decoder cannot process the SLIP header.
BadEscapeSequenceDecode
The decoder cannot process the SLIP escape sequence.